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: LayoutTests/fast/shapes/shape-outside-floats/shape-outside-floats-not-a-layer.html

Issue 200633005: [CSS Shapes] Remove deprecated shapes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix test expectations Created 6 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 .container { 3 .container {
4 font: 10px/1 Ahem; 4 font: 10px/1 Ahem;
5 color: green; 5 color: green;
6 } 6 }
7 .left { 7 .left {
8 float: left; 8 float: left;
9 height: 10px; 9 height: 10px;
10 width: 50px; 10 width: 50px;
11 background-color: red; 11 background-color: red;
12 shape-outside: rectangle(0, 0, 0, 100%); 12 shape-outside: inset(0 100% 0 0);
13 } 13 }
14 </style> 14 </style>
15 <body> 15 <body>
16 You should see a green rectangle. You shouldn't see any red. 16 You should see a green rectangle. You shouldn't see any red.
17 <div class="container"> 17 <div class="container">
18 <div class="left"></div> 18 <div class="left"></div>
19 XXXXX 19 XXXXX
20 </div> 20 </div>
21 </body> 21 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698