aboutsummaryrefslogtreecommitdiff
path: root/test/data/html/test-stylesheet.css
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-04-04 22:42:48 -0400
committerGitHub <noreply@github.com>2020-04-04 22:42:48 -0400
commit167e83c14794437e43b7df2017efab1e7e060a99 (patch)
treec3ea69779daee88be9c371785e78aedca996a94f /test/data/html/test-stylesheet.css
parenta0c4ce779d35cab39c62ca42ad3fe58a82faa1bb (diff)
parenta4c7d243f4cddfc4e2b29132fe65fe07ff86bc36 (diff)
Merge pull request #430 from toasted-nutbread/manual-dom-tests
Create some tests for fullscreen elements, <iframe>s, and shadow DOMs
Diffstat (limited to 'test/data/html/test-stylesheet.css')
-rw-r--r--test/data/html/test-stylesheet.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/data/html/test-stylesheet.css b/test/data/html/test-stylesheet.css
index ab25732e..f63d2481 100644
--- a/test/data/html/test-stylesheet.css
+++ b/test/data/html/test-stylesheet.css
@@ -7,6 +7,7 @@ body {
margin: 0 auto;
background-color: #f8f8f8;
counter-reset: test-id;
+ overflow-y: scroll;
}
h1 {
@@ -14,6 +15,19 @@ h1 {
margin: 0.67em 0;
}
+p {
+ margin: 0.33em 0;
+}
+
+h1+p {
+ margin-top: -0.67em;
+}
+
+a, a:visited {
+ color: #1080c0;
+ text-decoration: underline;
+}
+
.test {
background-color: #ffffff;
margin: 1em 0;
@@ -30,3 +44,8 @@ h1 {
border-bottom: 1px solid #d8d8d8;
font-weight: bold;
}
+
+.description {
+ color: #444444;
+ font-style: italic;
+}