A couple of != reftests (#2090)

This commit is contained in:
Manish Goregaokar 2014-04-12 08:22:44 +05:30
parent d7f450dbd7
commit 50b5bd3beb
3 changed files with 16 additions and 0 deletions

View file

@ -31,6 +31,7 @@
== background_style_attr.html background_ref.html
== background_external_stylesheet.html background_ref.html
== block_image.html 500x300_green.html
!= block_image.html noteq_500x300_white.html
# == simple_iframe.html simple_iframe_ref.html -- disabled due to iframe crashiness
== object_element_a.html object_element_b.html
== height_compute_reset.html height_compute.html

View file

@ -0,0 +1,5 @@
<html>
<body>
<div style="width: 500px; height: 300px; background-color: #fff;"></div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>Attribute exists selector: [foo]</title>
</head>
<body>
<p>This text should be green.</p>
<p>This text should be black.</p>
</body>
</html>