Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / events / mouse-click-events-pseudo-element.html
blobcb55ff4f4ca8f241188ce2d6b72b15359c6ac5b5
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 <style>
6 #square {
7 position: relative;
8 width: 100px;
9 height: 100px;
10 background: #aaa;
13 #square:active:after {
14 content: "";
15 display: block;
16 position: absolute;
17 top: 0;
18 bottom: 0;
19 left: 0;
20 right: 0;
21 background: #000;
22 opacity: 0.25;
24 </style>
25 </head>
26 <body>
27 <script src="script-tests/mouse-click-events-pseudo-element.js"></script>
28 </body>
29 </html>