Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: third_party/WebKit/LayoutTests/inspector-protocol/runtime/resources/console-log-navigate.html

Issue 2954093003: [DevTools] Migrate inspector-protocol/runtime tests to new harness (Closed)
Patch Set: fail: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/inspector-protocol/runtime/resources/console-log-navigate.html
diff --git a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/resources/console-log-navigate.html b/third_party/WebKit/LayoutTests/inspector-protocol/runtime/resources/console-log-navigate.html
deleted file mode 100644
index 56cdeded31be3bbd9e3afde0d25cfed538454652..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/inspector-protocol/runtime/resources/console-log-navigate.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<script>
-function navigate()
-{
- anchor = document.createElement("a");
- anchor.href = "about:blank";
- anchor.click();
-}
-
-function logArray()
-{
- array = [];
- array.__defineGetter__(0, () => navigate());
- console.log(array);
-}
-
-function logDate()
-{
- var a = new Date();
- a.toString = () => navigate();
- console.log(a);
-}
-
-function logDateWithArg()
-{
- var a = new Date();
- a.toString = () => navigate();
- console.log(42, a);
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698