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

Side by Side Diff: LayoutTests/fast/shapes/shape-inside/shape-inside-non-block-descendants.html

Issue 209443007: Remove shape-inside support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove now unused segmentIsEmpty 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
(Empty)
1 <html>
2 <head>
3 <style>
4 div, video {
5 float: left;
6 width: 500px;
7 height: 500px;
8 }
9 div {
10 shape-inside: polygon(0 0, 100% 0, 100% 100%, 0 100%);
11 }
12 </style>
13 </head>
14 <body>
15 Descendants of non-block elements should ignore an ancestor's shape-inside. The video controls should render below ignoring the shape-inside.
16 <div><video controls></video></div>
17 </body>
18 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698