OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 html { | 4 html { |
5 -webkit-filter: brightness(0.1) contrast(120%); | 5 -webkit-filter: brightness(0.1) contrast(120%); |
6 } | 6 } |
7 #rect { | 7 #rect { |
8 background: red; | 8 background: red; |
9 width: 100px; | 9 width: 100px; |
10 height: 100px; | 10 height: 100px; |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 if (window.layoutTestController) { | 22 if (window.layoutTestController) { |
23 layoutTestController.dumpAsText(true); | 23 layoutTestController.dumpAsText(true); |
24 layoutTestController.display(); | 24 layoutTestController.display(); |
25 changeBackground(); | 25 changeBackground(); |
26 } else | 26 } else |
27 window.setTimeout(changeBackground, 250); | 27 window.setTimeout(changeBackground, 250); |
28 | 28 |
29 </script> | 29 </script> |
30 </html> | 30 </html> |
OLD | NEW |