Index: third_party/WebKit/LayoutTests/fast/forms/selection-wrongtype.html |
diff --git a/third_party/WebKit/LayoutTests/fast/forms/selection-wrongtype.html b/third_party/WebKit/LayoutTests/fast/forms/selection-wrongtype.html |
index f7d790d3f85e902ca2cd9cb351cb6962baad900a..0c94f9f62fd0a6874f8bfe8398cf81939ace1446 100644 |
--- a/third_party/WebKit/LayoutTests/fast/forms/selection-wrongtype.html |
+++ b/third_party/WebKit/LayoutTests/fast/forms/selection-wrongtype.html |
@@ -18,11 +18,11 @@ for (var i = 0; i < tests.children.length; i++) { |
var test = tests.children[i]; |
test.focus(); |
- shouldThrow('test.selectionStart'); |
+ shouldBe('test.selectionStart', 'null'); |
shouldThrow('test.selectionStart = 0'); |
- shouldThrow('test.selectionEnd'); |
+ shouldBe('test.selectionEnd', 'null'); |
shouldThrow('test.selectionEnd = 0'); |
- shouldThrow('test.selectionDirection'); |
+ shouldBe('test.selectionDirection', 'null'); |
shouldThrow('test.selectionDirection = 0'); |
shouldThrow('test.selectionRange()'); |
} |