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

Side by Side Diff: LayoutTests/plugins/attach-during-destroy.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 <script>
5 function destroyed()
6 {
7 var target = document.getElementById("target");
8 target.innerHTML = "text";
9 }
10
11 function loaded()
12 {
13 if (window.testRunner) {
14 testRunner.dumpAsText();
15 testRunner.waitUntilDone();
16 }
17
18 document.body.offsetTop;
19 location.href = "data:text/html,<head><scr" + "ipt>function loaded() { i f (window.testRunner) testRunner.notifyDone(); }</scr" + "ipt></head><body onloa d='loaded()'>Test for rdar://problem/7194735 PASSED.</body>";
20 }
21 </script>
22 </head>
23 <body onload="loaded()">
24 <p>
25 Test for <i><a href="rdar://problem/7194735">rdar://problem/7194735</a> Cras hes at LayoutText::LayoutText()</i>.
26 </p>
27 <p>
28 This test should not crash or cause an assertion failure.
29 </p>
30 <embed type="application/x-webkit-test-netscape" ondestroy="destroyed()">
31 <div id="target"></div>
32 </body>
33 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698