diff options
Diffstat (limited to 'layout/reftests/bugs/379178-xhtml.xhtml')
-rw-r--r-- | layout/reftests/bugs/379178-xhtml.xhtml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/bugs/379178-xhtml.xhtml b/layout/reftests/bugs/379178-xhtml.xhtml new file mode 100644 index 0000000000..6e2fd52cc8 --- /dev/null +++ b/layout/reftests/bugs/379178-xhtml.xhtml @@ -0,0 +1,32 @@ +<?xml version="1.0" ?> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + +<title>XHTML 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> |