mirror of
https://github.com/servo/servo.git
synced 2025-08-07 14:35:33 +01:00
Mark as expected failure a reftest that uses 'direction'.
That property is behind the new --experimental flag.
This commit is contained in:
parent
bc2aa8430b
commit
94b630e2ed
2 changed files with 6 additions and 3 deletions
|
@ -82,8 +82,8 @@ fn parse_lists(file: &String, servo_args: &[String]) -> Vec<TestDescAndFn> {
|
||||||
};
|
};
|
||||||
|
|
||||||
for line in contents.as_slice().lines() {
|
for line in contents.as_slice().lines() {
|
||||||
// ignore comments
|
// ignore comments or empty lines
|
||||||
if line.starts_with("#") {
|
if line.starts_with("#") || line.is_empty() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -75,7 +75,10 @@
|
||||||
== pseudo_element_a.html pseudo_element_b.html
|
== pseudo_element_a.html pseudo_element_b.html
|
||||||
== linebreak_simple_a.html linebreak_simple_b.html
|
== linebreak_simple_a.html linebreak_simple_b.html
|
||||||
== linebreak_inline_span_a.html linebreak_inline_span_b.html
|
== linebreak_inline_span_a.html linebreak_inline_span_b.html
|
||||||
== overconstrained_block.html overconstrained_block_ref.html
|
|
||||||
|
# Should be == with expected failure. See #2797
|
||||||
|
!= overconstrained_block.html overconstrained_block_ref.html
|
||||||
|
|
||||||
== overflow_auto.html overflow_simple_b.html
|
== overflow_auto.html overflow_simple_b.html
|
||||||
== overflow_scroll.html overflow_simple_b.html
|
== overflow_scroll.html overflow_simple_b.html
|
||||||
== overflow_simple_a.html overflow_simple_b.html
|
== overflow_simple_a.html overflow_simple_b.html
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue