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

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

Issue 1516553002: Remove deprecation messages for no-ops that are left in the specs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update tests Created 5 years 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 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <script>
8 description('Detaching a Range while deleteContents() is running should not caus e a crash.');
9
10 window.jsTestIsAsync = true;
11
12 window.addEventListener('message', function (event) {
13 if (event.data === 'done') {
14 testPassed('The browser did not crash.');
15 document.body.removeChild(iframe);
16 finishJSTest();
17 }
18 }, false);
19
20 var iframe = document.createElement('iframe');
21 iframe.src = 'resources/detach-range-during-deletecontents-iframe.xhtml';
22 document.body.appendChild(iframe);
23 </script>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698