Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / background-clip-text.html
bloba0a4d84a827179840f084e38d9751d10169e6f3f
1 <html>
2 <head>
3 <style type="text/css">
4 #shadowBox {
5 -webkit-background-clip: text;
6 -webkit-box-shadow: 0 100px #f00;
7 width: 100px; height: 100px;
9 #greenBox {
10 font-size: 100px;
11 background-color: #0f0;
12 width: 100px; height: 100px;
14 </style>
15 </head>
16 <body>
18 <!-- Try select/deselect the space in the green box below. You should not see red. -->
19 <div id="shadowBox"></div>
20 <div id="greenBox" >&nbsp;</div>
22 <script type="text/javascript">
23 if (window.testRunner && window.internals) {
24 testRunner.dumpAsTextWithPixelResults();
26 </script>
28 </body>
29 </html>