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

Side by Side Diff: LayoutTests/plugins/get-javascript-url.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 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 <body>
2 <p>Test that loading a javascript URL works correctly.</p>
3 <embed type="application/x-webkit-test-netscape" id="testPlugin" onURLNotify="do ne()">
4 <div id="result">Testing...</div>
5 <script>
6 if (window.testRunner) {
7 testRunner.dumpAsText();
8 testRunner.waitUntilDone();
9 }
10
11 function done()
12 {
13 document.getElementById("result").innerHTML = "PASS, no assertion failure.";
14 if (window.testRunner)
15 testRunner.notifyDone();
16 }
17
18 var testPlugin = document.getElementById('testPlugin');
19 testPlugin.getURLNotify("javascript:12345", null, "callback");
20 </script>
21 </body>
OLDNEW
« no previous file with comments | « LayoutTests/plugins/get-file-url-expected.txt ('k') | LayoutTests/plugins/get-javascript-url-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698