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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/inert/resources/dialog-layout.css

Issue 2088453002: Implement the inert attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: esprehn comments and fix layout tests to use testharness.js Created 4 years, 5 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 /* Remove body margin and dialog styles for easier positioning expected values * / 1 /* Remove body margin and dialog styles for easier positioning expected values * /
2 body { 2 body {
3 height: 10000px; 3 height: 10000px;
4 margin: 0; 4 margin: 0;
5 } 5 }
6 6
7 dialog { 7 dialog {
8 border: 0; 8 border: 0;
9 padding: 0; 9 padding: 0;
10 height: auto; 10 height: auto;
11 width: auto; 11 width: auto;
12 } 12 }
13 13
14 #absolute-div { 14 #absolute-div {
15 position: absolute; 15 position: absolute;
16 top: 800px; 16 top: 800px;
17 height: 50px; 17 height: 50px;
18 width: 90%; 18 width: 90%;
19 } 19 }
20 20
21 #relative-div { 21 #relative-div {
22 position: relative; 22 position: relative;
23 top: 20px; 23 top: 20px;
24 height: 30px; 24 height: 30px;
25 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698