Add a test for the base URL of external stylesheets.

This commit is contained in:
Simon Sapin 2014-02-19 10:53:37 +00:00
parent 946e9f82da
commit 330bab371b
5 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="subdirectory/background_image.css">
</head>
<body>
<div class="test" style="width:200px; height:200px;"></div>
</body>
</html>

View file

@ -29,4 +29,5 @@
== position_relative_a.html position_relative_b.html
== attr_exists_selector.html attr_exists_selector_ref.html
== data_img_a.html data_img_b.html
== background_a.html background_b.html
== background_style_attr.html background_ref.html
== background_external_stylesheet.html background_ref.html

View file

@ -0,0 +1,3 @@
.test {
background: url(../rust-0.png)
}