Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / paint / invalidation / spv2 / inline-overflow.html
blobec01d22e6864992941f01c85168e740dc98b7c39
1 <!-- Based on fast/repaint/inline-overflow.html -->
2 <script src="resources/paint-invalidation-test.js"></script>
3 <script>
4 window.expectedPaintInvalidationObjects = [
5 "LayoutText #text",
6 "InlineTextBox 'A\u00A0\u00A0B'",
7 ];
8 function paintInvalidationTest()
10 document.getElementById("target").style.webkitTextStrokeColor = "green";
12 </script>
13 <script src="../../../fast/repaint/../../resources/ahem.js"></script>
14 <body onload="runPaintInvalidationTest()" style="padding: 50px;">
15 <span id="target" style="font-family: Ahem; font-size: 50px; -webkit-text-stroke: 50px red;">A&nbsp;&nbsp;B</span>
16 </body>