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

Unified Diff: third_party/WebKit/Source/core/paint/test_data/perspective.html

Issue 1407543003: Preliminary paint property walk implementation for SPv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert forAllFrameViews change in FrameView.cpp. I don't know what I was thinking. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/paint/test_data/perspective.html
diff --git a/third_party/WebKit/Source/core/paint/test_data/perspective.html b/third_party/WebKit/Source/core/paint/test_data/perspective.html
new file mode 100644
index 0000000000000000000000000000000000000000..afe386b101bf3395cd28cd96994e02e28d087a51
--- /dev/null
+++ b/third_party/WebKit/Source/core/paint/test_data/perspective.html
@@ -0,0 +1,17 @@
+<style>
+#perspective {
+ position: absolute;
+ left: 50px;
+ top: 100px;
+ width: 400px;
+ height: 300px;
+ perspective: 100px;
+}
+
+#inner {
+ transform: translateZ(0);
+}
+</style>
+<div id="perspective">
+ <div id="inner"></div>
+</div>

Powered by Google App Engine
This is Rietveld 408576698