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

Unified Diff: LayoutTests/fast/dom/Range/detach-no-op.html

Issue 252783002: Make Range.detach() a no-op (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix some failures Created 6 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/Range/detach-no-op.html
diff --git a/LayoutTests/fast/dom/Range/detach-no-op.html b/LayoutTests/fast/dom/Range/detach-no-op.html
new file mode 100644
index 0000000000000000000000000000000000000000..af78d951466be8b7ab96ff52ea0af68c123b99bd
--- /dev/null
+++ b/LayoutTests/fast/dom/Range/detach-no-op.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html>
+<head>
+<link rel="help" href="http://dom.spec.whatwg.org/#dom-range-detach">
+<script src="../../../resources/js-test.js"></script>
+</head>
+<body>
+<script>
+description("Tests that Range.detach() is a no-op.");
+
+var range = new Range();
+shouldBe("range.startContainer", "document");
Yuta Kitamura 2014/04/28 09:27:38 Could you check the invariance of all attributes r
Inactive 2014/04/28 14:44:18 Done.
+shouldNotThrow("range.detach()");
+shouldBe("range.startContainer", "document");
+</script>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698