Index: third_party/WebKit/LayoutTests/fast/css/pseudo-active-display-none.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/pseudo-active-display-none.html b/third_party/WebKit/LayoutTests/fast/css/pseudo-active-display-none.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d154cca1e3f9397325784c224eff54b619eb26d0 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/pseudo-active-display-none.html |
@@ -0,0 +1,32 @@ |
+<!DOCTYPE html> |
+<script src="../../resources/testharness.js"></script> |
+<script src="../../resources/testharnessreport.js"></script> |
+<style> |
+label { |
+ background-color: black; |
+} |
+input:active + label { |
+ background-color: red; |
+} |
+#nodisplay { |
+ display: none; |
+} |
+</style> |
+<input id="nodisplay" type="checkbox"/> |
+<label id="label1" for="nodisplay">The target input has its display set to none.</label> |
+<script> |
+test(function() { |
+ assert_true(window.eventSender !== null); |
+}, "window.eventSender is required for the test to run"); |
+ |
+test(function() { |
+ var l1 = document.getElementById("label1"); |
+ var x = l1.offsetLeft + l1.offsetWidth/2; |
+ var y = l1.offsetTop + l1.offsetHeight/2; |
+ eventSender.mouseMoveTo(x, y); |
+ eventSender.mouseDown(); |
+ assert_equals(getComputedStyle(l1).backgroundColor, 'rgb(255, 0, 0)'); |
+ eventSender.mouseUp(); |
+ assert_equals(getComputedStyle(l1).backgroundColor, 'rgb(0, 0, 0)'); |
+}, "This test performs a check for active pseudo class to be applied for element when its display is set to none."); |
+</script> |