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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/accelerated-scrolling-with-clip-reference.html

Issue 2078343005: Fix positioning of CSS reference clips in composited layers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add virtual expectation Created 4 years, 6 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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 .clip-path { 5 .clip-path {
6 -webkit-clip-path: url('#clipping'); 6 -webkit-clip-path: url('#clipping');
7 clip-path: url('#clipping');
7 overflow: scroll; 8 overflow: scroll;
8 } 9 }
9 10
10 .outer { 11 .outer {
11 height: 400px; 12 height: 400px;
12 width: 400px; 13 width: 400px;
13 background-color: blue; 14 background-color: blue;
14 } 15 }
15 16
16 .inner { 17 .inner {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 52
52 <div class="clip-path outer" id="outer"> 53 <div class="clip-path outer" id="outer">
53 <div class="spacer"></div> 54 <div class="spacer"></div>
54 <div class="inner"> 55 <div class="inner">
55 <div class="spacer bottom"></div> 56 <div class="spacer bottom"></div>
56 </div> 57 </div>
57 <div class="spacer"></div> 58 <div class="spacer"></div>
58 </div> 59 </div>
59 </body> 60 </body>
60 </html> 61 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698