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

Side by Side Diff: LayoutTests/fast/dom/Range/detach-range-during-deletecontents.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <script> 7 <script>
8 description('Detaching a Range while deleteContents() is running should not caus e a crash.'); 8 description('Detaching a Range while deleteContents() is running should not caus e a crash.');
9 9
10 window.jsTestIsAsync = true; 10 window.jsTestIsAsync = true;
11 11
12 window.addEventListener('message', function (event) { 12 window.addEventListener('message', function (event) {
13 if (event.data === 'done') { 13 if (event.data === 'done') {
14 testPassed('The browser did not crash.'); 14 testPassed('The browser did not crash.');
15 document.body.removeChild(iframe); 15 document.body.removeChild(iframe);
16 finishJSTest(); 16 finishJSTest();
17 } 17 }
18 }, false); 18 }, false);
19 19
20 var iframe = document.createElement('iframe'); 20 var iframe = document.createElement('iframe');
21 iframe.src = 'resources/detach-range-during-deletecontents-iframe.xhtml'; 21 iframe.src = 'resources/detach-range-during-deletecontents-iframe.xhtml';
22 document.body.appendChild(iframe); 22 document.body.appendChild(iframe);
23 </script> 23 </script>
24 </body> 24 </body>
25 <script src="../../js/resources/js-test-post.js"></script>
26 </html> 25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/Range/31684.html ('k') | LayoutTests/fast/dom/Range/getBoundingClientRect.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698