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

Side by Side Diff: LayoutTests/fast/regions/region-styling/render-region-custom-style-mark-expected.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 <!--
4 Ref test for checking that regions with associated region styling rules
5 are identified and flagged correctly.
6 -->
7 <head>
8 <style>
9 @font-face {
10 font-family: webkit-ahem;
11 font-style: normal;
12 src: url(../../../resources/Ahem.ttf);
13 }
14
15 p { font-family: webkit-ahem; background-color: green; }
16
17 #region1 { position: absolute; top: 10px; width: 300px; height: 50px ; }
18 #region2 { position: absolute; top: 70px; width: 300px; height: 50px ; }
19 #region4 { position: absolute; top: 190px; width: 300px; height: 50p x; }
20 </style>
21 </head>
22 <body>
23 <div id="region1">
24 <p id="p1">R: 00 G: 80 B: 00</p>
25 </div>
26 <div id="region2">
27 <p id="p2">R: 00 G: 80 B: 00</p>
28 </div>
29 <div id="region4">
30 <p id="p3" class="p3">R: 00 G: 80 B: 00</p>
31 </div>
32 </body>
33 </html>
34
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698