aboutsummaryrefslogtreecommitdiffstats
path: root/tests/ref/inline_background_a.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ref/inline_background_a.html')
-rw-r--r--tests/ref/inline_background_a.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ref/inline_background_a.html b/tests/ref/inline_background_a.html
new file mode 100644
index 00000000000..58a34046d5d
--- /dev/null
+++ b/tests/ref/inline_background_a.html
@@ -0,0 +1,17 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+ <head>
+ <style type="text/css">
+ .white {
+ color: white;
+ }
+ .bggreen {
+ background-color: green;
+ }
+ body {
+ margin: 0;
+ }
+ </style>
+ </head>
+ <body><span class="bggreen white">White text on a green background</span></body>
+</html>