Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / disabled-form-control-elements-should-not-be-active.html
blob87b9e3f4f4a8f6cbba89344011be002a3510c5a3
1 <!DOCTYPE html>
2 <style>
3 #outbox {
4 background-color: #00ff00;
5 width: 100px;
6 height: 100px;
8 #outbox:active {
9 background-color: #ff0000;
11 </style>
12 <script src='../../resources/js-test.js'></script>
13 <div id='outbox'>
14 <button disabled>Click Me!</button>
15 </div>
17 <script>
18 function shouldHaveBackground(element, bg) {
19 background = getComputedStyle(element, null).getPropertyValue('background-color');
20 shouldBeEqualToString('background', bg);
22 description('Style :active should not be applied for disabled Form Control elements');
23 if (window.testRunner) {
24 var box = document.getElementById('outbox');
26 eventSender.dragMode = false;
28 var button = document.querySelector('button');
29 var buttonRect = button.getBoundingClientRect();
30 // Click the button.
31 eventSender.mouseMoveTo(buttonRect.left + 5, buttonRect.top + 5);
32 eventSender.mouseDown();
33 shouldHaveBackground(box, 'rgb(0, 255, 0)');
34 eventSender.mouseUp();
36 </script>