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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/empty-page.html

Issue 2735933002: DevTools: add tests to fixate bindings behavior (Closed)
Patch Set: DevTools: add tests to fixate bindings behavior Created 3 years, 9 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/http/tests/inspector/bindings/resources/empty-page.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/empty-page.html b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/empty-page.html
new file mode 100644
index 0000000000000000000000000000000000000000..3289040d9aff31917d3680c9f42207d3fb569283
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/bindings/resources/empty-page.html
@@ -0,0 +1,15 @@
+<html>
+<script>
+window.onload = function()
+{
+ function notifyFrontend()
+ {
+ InspectorTest.pageLoaded();
+ }
+ testRunner.dumpAsText();
+ testRunner.waitUntilDone();
+ testRunner.evaluateInWebInspector(42, "(" + notifyFrontend + ")()");
+}
+</script>
+<p>empty page</p>
+</html>

Powered by Google App Engine
This is Rietveld 408576698