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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/overflow/accelerated-scrolling-with-clip-path.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, 5 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: polygon(61px 237px,9px 313px,115px 386px,621px 356px,280p x 339px,505px 187px,414px 61px,164px 143px,84px 42px,2px 189px); 6 -webkit-clip-path: polygon(61px 237px,9px 313px,115px 386px,621px 356px,280p x 339px,505px 187px,414px 61px,164px 143px,84px 42px,2px 189px);
7 clip-path: polygon(61px 237px,9px 313px,115px 386px,621px 356px,280px 339px, 505px 187px,414px 61px,164px 143px,84px 42px,2px 189px);
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 26 matching lines...) Expand all
43 <body> 44 <body>
44 <div class="clip-path outer" id="outer"> 45 <div class="clip-path outer" id="outer">
45 <div class="spacer"></div> 46 <div class="spacer"></div>
46 <div class="inner"> 47 <div class="inner">
47 <div class="spacer bottom"></div> 48 <div class="spacer bottom"></div>
48 </div> 49 </div>
49 <div class="spacer"></div> 50 <div class="spacer"></div>
50 </div> 51 </div>
51 </body> 52 </body>
52 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698