Index: LayoutTests/fast/dom/Range/bug-19527.html |
diff --git a/LayoutTests/fast/dom/Range/bug-19527.html b/LayoutTests/fast/dom/Range/bug-19527.html |
index 1767d1f36dc2493401f1e4e167f3724cbe6eaffc..80f7f5cbdcaea2182b60c49032f99b4c56950048 100644 |
--- a/LayoutTests/fast/dom/Range/bug-19527.html |
+++ b/LayoutTests/fast/dom/Range/bug-19527.html |
@@ -46,15 +46,6 @@ shouldBe("ra.isPointInRange(document.documentElement, 0)", false); |
shouldBe("ra.isPointInRange(document.body, 0)", false); |
shouldThrow("ra.isPointInRange(null, 0)", "HIERARCHY_REQUEST_ERR"); |
-ra.detach(); |
- |
-shouldThrow("ra.comparePoint(document.createElement('b'), 0)", "INVALID_STATE_ERR"); |
-shouldThrow("ra.comparePoint(document.body, 0)", "INVALID_STATE_ERR"); |
-shouldThrow("ra.comparePoint(null, 0)", "INVALID_STATE_ERR"); |
-shouldThrow("ra.isPointInRange(document.createElement('b'), 0)", "INVALID_STATE_ERR"); |
-shouldThrow("ra.isPointInRange(document.body, 0)", "INVALID_STATE_ERR"); |
-shouldThrow("ra.isPointInRange(null, 0)", "INVALID_STATE_ERR"); |
- |
if (!hadError) |
document.getElementById("log").innerHTML = "PASS"; |