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

Unified Diff: third_party/WebKit/LayoutTests/compositing/squashing/squash-composited-input.html

Issue 2773163002: Include control clip in list of clip-related properties. (Closed)
Patch Set: Created 3 years, 9 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/LayoutTests/compositing/squashing/squash-composited-input.html
diff --git a/third_party/WebKit/LayoutTests/compositing/squashing/squash-composited-input.html b/third_party/WebKit/LayoutTests/compositing/squashing/squash-composited-input.html
new file mode 100644
index 0000000000000000000000000000000000000000..f7922d27f5bd81c86b8cca99163c67ec82715a88
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/squashing/squash-composited-input.html
@@ -0,0 +1,28 @@
+<!doctype HTML>
+<style>
+ input {
+ position: absolute;
+ width: 150px;
+ height: 50px;
+ }
+
+ .i1 {
+ top: 100px;
+ }
+
+ .i2 {
+ top: 170px;
+ }
+</style>
+<div style=" position: relative; width: 400px; height: 400px; overflow: hidden;">
+ <div style="will-change: transform; width: 200px; height: 300px;" ></div>
+ <input type="text" class="i1" value="test test test test test test test test"/>
+ <input type="text" class="i2"/>
+</div>
+
+<script>
+onload = function () {
+ if (window.internals)
+ window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
+};
+</script>

Powered by Google App Engine
This is Rietveld 408576698