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

Unified Diff: third_party/WebKit/Source/core/paint/test_data/fixed-position.html

Issue 2299533002: WIP: Construct SPV2's scroll paint property tree (Closed)
Patch Set: Add more paint property builder tests, update comments/documentation" Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/test_data/fixed-position.html
diff --git a/third_party/WebKit/Source/core/paint/test_data/fixed-position.html b/third_party/WebKit/Source/core/paint/test_data/fixed-position.html
index f5030851aaf740688a320f6f504131fb08f77634..729870789ef71c014efeb4d48886dc70a17aa25e 100644
--- a/third_party/WebKit/Source/core/paint/test_data/fixed-position.html
+++ b/third_party/WebKit/Source/core/paint/test_data/fixed-position.html
@@ -1,5 +1,6 @@
+<!DOCTYPE HTML>
<style>
-.positioned-scroll {
+#positionedScroll {
position: absolute;
left: 100px;
top: 50px;
@@ -22,18 +23,18 @@
overflow: hidden;
}
-.transformed-scroll {
+#transformedScroll {
transform: scaleX(2);
width: 400px;
height: 300px;
overflow: scroll;
}
</style>
-<div class="positioned-scroll">
+<div id="positionedScroll">
<div class="bloat"></div>
<div class="fixed" id="target1"></div>
</div>
-<div class="transformed-scroll" id="scroller">
+<div id="transformedScroll">
<div class="bloat"></div>
<div class="fixed" id="target2"></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698