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

Side by Side Diff: third_party/WebKit/LayoutTests/plugins/reloadplugins-no-pages.html

Issue 1821103002: Migrate a bunch of LayoutTests from NPAPI to PPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix_open-and-close-window-with-plugin
Patch Set: rebase; fix expectations for plugin-initiate-popup-window-expected Created 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 <html>
2 <body>
3 <embed name="plg" type="application/x-webkit-test-netscape"></embed>
4 <p>Test for NPN_RelaodPlugin in which reloadOpenPages is false. You should see o ne alert, indicating that the page was loaded once.</p>
5 <div id='res'>FAILURE</div>
6 <script>
7 alert("Page was loaded");
8 if (window.testRunner)
9 testRunner.dumpAsText();
10
11 try {
12 plg.reloadPluginsNoPages();
13 document.getElementById('res').innerHTML='SUCCESS';
14 } catch (ex) {
15 alert("Exception: " + ex.description + ". Test plugin was not found");
16 }
17 </script>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698