diff options
Diffstat (limited to 'layout/reftests/css-import/444723-1.html')
-rw-r--r-- | layout/reftests/css-import/444723-1.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/css-import/444723-1.html b/layout/reftests/css-import/444723-1.html new file mode 100644 index 000000000..fe6ab1ed7 --- /dev/null +++ b/layout/reftests/css-import/444723-1.html @@ -0,0 +1,20 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> + +<head> +<link rel="stylesheet" media="screen" type="text/css" + href="outermost-sheet.css" title="A"/> +<link rel="alternate stylesheet" media="screen" type="text/css" + href="outer-sheet.css" title="B"/> + +</head> + +<body> + <ul> + <li class="outermost">purple</li> + <li class="outer">blue</li> + <li class="inner">yellow</li> + </ul> +</body> +</html> |