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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/Range/detach-range-during-deletecontents.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Range/detach-range-during-deletecontents.html b/third_party/WebKit/LayoutTests/fast/dom/Range/detach-range-during-deletecontents.html
deleted file mode 100644
index 1f98807227328fcd16d26ab4eb38d9e6a84ba96e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/Range/detach-range-during-deletecontents.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../../../resources/js-test.js"></script>
-</head>
-<body>
-<script>
-description('Detaching a Range while deleteContents() is running should not cause a crash.');
-
-window.jsTestIsAsync = true;
-
-window.addEventListener('message', function (event) {
- if (event.data === 'done') {
- testPassed('The browser did not crash.');
- document.body.removeChild(iframe);
- finishJSTest();
- }
-}, false);
-
-var iframe = document.createElement('iframe');
-iframe.src = 'resources/detach-range-during-deletecontents-iframe.xhtml';
-document.body.appendChild(iframe);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698