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

Side by Side Diff: LayoutTests/plugins/resources/js-from-destroy-frame.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 <div id=playground></div>
2 <embed id="plg" type="application/x-webkit-test-netscape" ondestroy="pluginDestr oyed()"></embed>
3 <script>
4 function pluginDestroyed()
5 {
6 try {
7 var req = new XMLHttpRequest;
8 req.open("GET", "/", true);
9 req.send();
10
11 document.referrer;
12
13 document.getElementById("playground").innerHTML = "<div onclick='alert(0 )'></div>"
14 } catch (ex) {
15 alert("Unexpected exception: " + ex);
16 }
17 }
18
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698