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

Side by Side Diff: LayoutTests/plugins/plugin-document-load-prevented-userscript.html

Issue 14188004: Remove UserScript support, which is not used by Chromium (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove one more test Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <script>
4 if (window.testRunner) {
5 window.testRunner.dumpAsText();
6 window.testRunner.addUserScript("document.addEventListener('beforelo ad', function(event) { if (event.url.indexOf('swf') >= 0) event.preventDefault() ; }, true);", true, true);
7 }
8 </script>
9 </head>
10 <body>
11 This tests https://bugs.webkit.org/show_bug.cgi?id=46773 by having the load of the plugin
12 inside the plugin document be cancelled. If there is no crash, the test pass ed.
13 <iframe src="resources/simple_blank.swf"></iframe>
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698