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

Side by Side Diff: LayoutTests/plugins/npp-set-window-called-during-destruction.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 <!DOCTYPE html>
2 <html>
3 <head>
4 </head>
5 <body>
6 <embed type="application/x-webkit-test-netscape" test="npp-set-window-called -during-destruction"></embed>
7 <p>This tests whether a NPP_SetWindow is called during plugin destruction.</ p>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 var embed = document.getElementsByTagName("embed")[0];
12 embed.setWillBeDestroyed();
13 embed.parentNode.removeChild(embed);
14 </script>
15 </body>
16 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698