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

Side by Side Diff: LayoutTests/fast/regions/region-styling/region-style-not-supported-properties.html

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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 <!doctype html>
2 <html>
3 <head>
4 <style>
5 #article { -webkit-flow-into: flow; width: 50px; height: 50px; backg round-color: green; }
6 #region { -webkit-flow-from: flow; width: 200px; height: 200px; posi tion: absolute; top: 100px; left: 100px; }
7
8 /* visibility is not in the list of supported region style propertie s */
9 @-webkit-region #region {
10 #article {
11 visibility: hidden;
12 }
13 }
14
15 #redBox { width: 50px; height: 50px; background-color: red; position : absolute; top: 100px; left: 100px; }
16 </style>
17 </head>
18 <body>
19 <p>Only a few css properties are supposed to be enabled through region s tyling.</p>
20 <p>On success you should see a green rectangle below.</p>
21 <div id="article"></div>
22 <div id="redBox"></div>
23 <div id="region"></div>
24 </body>
25 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698