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

Side by Side Diff: LayoutTests/fast/regions/cssom/element-region-overset-state-vertical-rl-negative-letter-spacing.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 <html>
2 <head>
3 <script src="../../../resources/js-test.js"></script>
4 <style>
5 html {
6 -webkit-writing-mode: vertical-rl;
7 }
8 #content {
9 -webkit-flow-into: article;
10 letter-spacing: -1px;
11 direction: rtl;
12 }
13 #region_1, #region_2{
14 -webkit-flow-from: article;
15 overset:visible;
16 display:inline-block;
17 vertical-align:top;
18 margin:10px;
19 }
20
21 #region_1 { height:110px; width:200px; }
22 #region_2 { height:110px; width:200px; }
23
24 </style>
25 </head>
26 <body>
27 <h1 id="content">Lorem ipsum</h1>
28
29 <div id="region_1"></div>
30 <div id="region_2"></div>
31
32 <script>
33 description("Tests Element.webkitRegionoverset attribute")
34 if (window.testRunner) {
35 testRunner.dumpAsText();
36 }
37 var region_1 = document.getElementById("region_1");
38 var region_2 = document.getElementById("region_2");
39 shouldBeEqualToString("region_1.webkitRegionOverset", "fit");
40 shouldBeEqualToString("region_2.webkitRegionOverset", "empty");
41 var content = document.getElementById("content");
42 document.body.removeChild(region_1);
43 document.body.removeChild(region_2);
44 document.body.removeChild(content);
45
46
47 </script>
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698