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

Side by Side Diff: LayoutTests/fast/regions/resources/region-style.css

Issue 25890007: [CSS Regions] Layout Test for selecting text in 2 regions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Using Vertical instead of Vert for both JavaScript method and CSS classes. Created 7 years, 2 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 .redBox { 1 .redBox {
2 width: 50px; 2 width: 50px;
3 height: 50px; 3 height: 50px;
4 background-color: red; 4 background-color: red;
5 } 5 }
6 6
7 .greenBox { 7 .greenBox {
8 width: 50px; 8 width: 50px;
9 height: 50px; 9 height: 50px;
10 background-color: green; 10 background-color: green;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 .pass { 63 .pass {
64 font-weight: bold; 64 font-weight: bold;
65 color: green; 65 color: green;
66 } 66 }
67 67
68 .fail { 68 .fail {
69 font-weight: bold; 69 font-weight: bold;
70 color: red; 70 color: red;
71 } 71 }
72
73 .break {
74 -webkit-region-break-before: always;
75 display: block;
76 }
77
78 .token {
79 color: blue;
80 font-weight: bold;
81 }
82
83 .description {
84 width: 600px;
85 }
86
87 .bigBox {
88 height: 100px;
89 width: 300px;
90 }
91
92 .greyBigBox {
93 height: 100px;
94 width: 300px;
95 background-color: lightgrey;
96 }
97
98 .descriptionVertical {
99 height: 600px;
100 }
101
102 .bigBoxVertical {
103 height: 300px;
104 width: 100px;
105 }
106
107 .greyBigBoxVertical {
108 height: 300px;
109 width: 100px;
110 background-color: lightgrey;
111 }
OLDNEW
« no previous file with comments | « LayoutTests/fast/regions/resources/helper.js ('k') | LayoutTests/fast/regions/selection/selecting-text-in-2-regions.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698