mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
auto merge of #2098 : Manishearth/servo/ref-noteq, r=metajack
See #2090 One reftest compares a green image to a white div. The other has green text being compared with normal text. If necessary, I can add some absolute positioning ones.
This commit is contained in:
commit
c27b31d9c9
3 changed files with 17 additions and 0 deletions
|
@ -27,10 +27,12 @@
|
|||
# inline_border_a.html inline_border_b.html
|
||||
== anon_block_inherit_a.html anon_block_inherit_b.html
|
||||
== attr_exists_selector.html attr_exists_selector_ref.html
|
||||
!= noteq_attr_exists_selector.html attr_exists_selector_ref.html
|
||||
== data_img_a.html data_img_b.html
|
||||
== 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
|
||||
|
|
5
src/test/ref/noteq_500x300_white.html
Normal file
5
src/test/ref/noteq_500x300_white.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<html>
|
||||
<body>
|
||||
<div style="width: 500px; height: 300px; background-color: #fff;"></div>
|
||||
</body>
|
||||
</html>
|
10
src/test/ref/noteq_attr_exists_selector.html
Normal file
10
src/test/ref/noteq_attr_exists_selector.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue