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

Side by Side Diff: LayoutTests/fast/regions/layers/region-zIndex-computedStyle.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 <script src="../../../resources/js-test.js"></script>
5 <style>
6 #article { -webkit-flow-into: flow; }
7 #region { -webkit-flow-from: flow; }
8 </style>
9 </head>
10 <body>
11 <p>Test region's computed values for z-index.</p>
12 <p>A region establishes a stacking context.</p>
13 <p>On success you should see PASS below</p>
14 <p id="console"></p>
15 <div id="article"></div>
16 <div id="region"></div>
17 </body>
18 <script>
19 if (window.testRunner)
20 window.testRunner.dumpAsText();
21 shouldBeEqualToString('window.getComputedStyle(document.getElementById(" region")).zIndex', "0");
22 </script>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698