Index: LayoutTests/fast/selectors/placeholder-shown-with-input-basics.html |
diff --git a/LayoutTests/fast/selectors/placeholder-shown-with-input-basics.html b/LayoutTests/fast/selectors/placeholder-shown-with-input-basics.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..af7fcd3522b54a71c15b747eb5c4c1b0ac5f44ae |
--- /dev/null |
+++ b/LayoutTests/fast/selectors/placeholder-shown-with-input-basics.html |
@@ -0,0 +1,71 @@ |
+<!doctype html> |
+<html> |
+<head> |
esprehn
2015/08/21 10:18:10
ditto
ramya.v
2015/08/25 10:24:45
Done.
|
+<script src="../../resources/js-test.js"></script> |
+<style> |
+input { |
+ background-color: white; |
+ color: black; |
+} |
+input:placeholder-shown { |
+ background-color: rgb(1, 2, 3); |
+} |
+input:not(:placeholder-shown) { |
+ color: rgb(4, 5, 6); |
+} |
+</style> |
+</head> |
+<body> |
+ <div style="display:none"> |
+ <!-- Does not match: no placeholder defined. --> |
+ <input type="text" id="no-placeholder"> |
+ <!-- Does not match: empty placeholder. --> |
+ <input type="text" id="empty-placeholder" placeholder> |
+ <input type="text" id="empty-placeholder2" placeholder=""> |
+ <!-- Does not match: placeholder contains only newline or carriage return characters. --> |
+ <input type="text" id="placeholder-contains-only-newline"> |
+ <input type="text" id="placeholder-contains-only-carriageReturn"> |
+ <!-- Does not match: the placeholder is not shown when a value is set --> |
+ <input type="text" id="with-value" placeholder="WebKit" value="FooBar"> |
+ <!-- Valid cases --> |
+ <input type="text" id="valid-placeholder" placeholder="WebKit"> |
+ <input type="text" id="valid-placeholder-with-empty-value" placeholder="WebKit" value> |
+ <input type="text" id="valid-placeholder-with-empty-value2" placeholder="WebKit" value=""> |
+ </div> |
+</body> |
+<script> |
+description('Check the basic features of the ":placeholder-shown" pseudo class with the <input> element.'); |
+document.getElementById('placeholder-contains-only-newline').setAttribute('placeholder', '\n'); |
+document.getElementById('placeholder-contains-only-carriageReturn').setAttribute('placeholder', '\r'); |
+shouldBe('document.querySelectorAll(":placeholder-shown").length', '3'); |
+shouldBe('document.querySelectorAll(":placeholder-shown")[0]', 'document.getElementById("valid-placeholder")'); |
+shouldBe('document.querySelectorAll(":placeholder-shown")[1]', 'document.getElementById("valid-placeholder-with-empty-value")'); |
+shouldBe('document.querySelectorAll(":placeholder-shown")[2]', 'document.getElementById("valid-placeholder-with-empty-value2")'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("no-placeholder")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("empty-placeholder")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("empty-placeholder2")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("placeholder-contains-only-newline")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("placeholder-contains-only-carriageReturn")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("with-value")).backgroundColor', 'rgb(255, 255, 255)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder")).backgroundColor', 'rgb(1, 2, 3)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder-with-empty-value")).backgroundColor', 'rgb(1, 2, 3)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder-with-empty-value2")).backgroundColor', 'rgb(1, 2, 3)'); |
+debug(""); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)").length', '6'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[0]', 'document.getElementById("no-placeholder")'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[1]', 'document.getElementById("empty-placeholder")'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[2]', 'document.getElementById("empty-placeholder2")'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[3]', 'document.getElementById("placeholder-contains-only-newline")'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[4]', 'document.getElementById("placeholder-contains-only-carriageReturn")'); |
+shouldBe('document.querySelectorAll("input:not(:placeholder-shown)")[5]', 'document.getElementById("with-value")'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("no-placeholder")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("empty-placeholder")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("empty-placeholder2")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("placeholder-contains-only-newline")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("placeholder-contains-only-carriageReturn")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("with-value")).color', 'rgb(4, 5, 6)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder")).color', 'rgb(0, 0, 0)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder-with-empty-value")).color', 'rgb(0, 0, 0)'); |
+shouldBeEqualToString('getComputedStyle(document.getElementById("valid-placeholder-with-empty-value2")).color', 'rgb(0, 0, 0)'); |
+</script> |
+</html> |