Index: third_party/WebKit/LayoutTests/fast/forms/shadow-tree-exposure.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/shadow-tree-exposure.html b/third_party/WebKit/LayoutTests/fast/forms/shadow-tree-exposure.html |
index 0d47ee16c59fe74d085bb9d2ecbd8f5af95c84a0..64aefe92cefedd098588e4b7959115635b039e0a 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/shadow-tree-exposure.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/shadow-tree-exposure.html |
@@ -50,7 +50,7 @@ shouldBe("getSelection().baseNode", "container"); |
shouldBe("getSelection().baseOffset", "1"); |
shouldBe("getSelection().extentNode", "container"); |
shouldBe("getSelection().extentOffset", "1"); |
-shouldBe("getSelection().type", "'Caret'"); |
+shouldBeEqualToString("getSelection().type", "Range"); |
debug("\nAdd a textarea element.\n"); |
@@ -75,7 +75,7 @@ shouldBe("getSelection().baseNode", "container"); |
shouldBe("getSelection().baseOffset", "2"); |
shouldBe("getSelection().extentNode", "container"); |
shouldBe("getSelection().extentOffset", "2"); |
-shouldBe("getSelection().type", "'Caret'"); |
+shouldBeEqualToString("getSelection().type", "Range"); |
document.body.removeChild(container); |