Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/spv2/inline-relative-positioned.html

Issue 1366763002: Text expectations of paint/invalidation/spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!-- Based on fast/repaint/inline-relative-positioned.html --> 1 <!-- Based on fast/repaint/inline-relative-positioned.html -->
2 <script src="resources/paint-invalidation-test.js"></script> 2 <script src="resources/paint-invalidation-test.js"></script>
3 <script src="../../../fast/repaint/../../resources/ahem.js"></script> 3 <script src="../../../fast/repaint/../../resources/ahem.js"></script>
4 <body onload="runPaintInvalidationTest()"> 4 <body onload="runPaintInvalidationTest()">
5 <span style="position: relative; top: 80px;"> 5 <span style="position: relative; top: 80px;">
6 <div id="target" style="display: inline-block; width: 100px; height: 100px; overflow: hidden; font-family: Ahem; font-size: 100px; background: red; color: g reen;">p</div> 6 <div id="target" style="display: inline-block; width: 100px; height: 100px; overflow: hidden; font-family: Ahem; font-size: 100px; background: red; color: g reen;">p</div>
7 </span> 7 </span>
8 <script> 8 <script>
9 window.expectedPaintInvalidationObjects = [
10 "InlineTextBox ''",
11 "RootInlineBox",
12 "LayoutBlockFlow DIV id='target'",
13 "LayoutText #text",
14 "InlineTextBox 'a'",
15 ];
16 function paintInvalidationTest() 9 function paintInvalidationTest()
17 { 10 {
18 document.getElementById("target").firstChild.data = "a"; 11 document.getElementById("target").firstChild.data = "a";
19 } 12 }
20 </script> 13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698