diff options
Diffstat (limited to 'layout/reftests/bugs/379178-html.html')
-rw-r--r-- | layout/reftests/bugs/379178-html.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/bugs/379178-html.html b/layout/reftests/bugs/379178-html.html new file mode 100644 index 000000000..105646f48 --- /dev/null +++ b/layout/reftests/bugs/379178-html.html @@ -0,0 +1,31 @@ +<html> +<head> + +<title>HTML Test for Bug #379178</title> + +<style type="text/css"> + +span +{ + background-color: white; +} + +#element, +.extra +{ + background-color: #8f8; +} + +</style> + +</head> +<body> + +<p> + <span style="background-color: #8f8;">a</span> + <span id="element">b</span> + <span class="extra">c</span> +</p> + +</body> +</html> |