Changeset 181258 in webkit


Ignore:
Timestamp:
Mar 8, 2015 9:25:04 PM (9 years ago)
Author:
benjamin@webkit.org
Message:

Fix the tests for the new double-child descendant in css-set-selector-text
https://bugs.webkit.org/show_bug.cgi?id=141882

Reviewed by Andreas Kling.

In 178592, I copied the rules from css-selector-text.html without removing
the declarations.

Kudos to Dhi Aurrahman for catching this.

  • fast/css/css-set-selector-text-expected.txt:
  • fast/css/css-set-selector-text.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r181253 r181258  
     12015-03-08  Benjamin Poulain  <benjamin@webkit.org>
     2
     3        Fix the tests for the new double-child descendant in css-set-selector-text
     4        https://bugs.webkit.org/show_bug.cgi?id=141882
     5
     6        Reviewed by Andreas Kling.
     7
     8        In 178592, I copied the rules from css-selector-text.html without removing
     9        the declarations.
     10
     11        Kudos to Dhi Aurrahman for catching this.
     12
     13        * fast/css/css-set-selector-text-expected.txt:
     14        * fast/css/css-set-selector-text.html:
     15
    1162015-03-08  Myles C. Maxfield  <mmaxfield@apple.com>
    217
  • trunk/LayoutTests/fast/css/css-set-selector-text-expected.txt

    r180558 r181258  
    224224PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:focus'
    225225
    226 FAIL setThenReadSelectorText('a>>b { }') should be a >> b { }. Was _foo.
    227 FAIL setThenReadSelectorText('a >>b { }') should be a >> b { }. Was _foo.
    228 FAIL setThenReadSelectorText('a        >>b { }') should be a >> b { }. Was _foo.
    229 FAIL setThenReadSelectorText('a>> b { }') should be a >> b { }. Was _foo.
    230 FAIL setThenReadSelectorText('a>>       b { }') should be a >> b { }. Was _foo.
    231 FAIL setThenReadSelectorText('a        >>       b { }') should be a >> b { }. Was _foo.
     226PASS setThenReadSelectorText('a>>b') is 'a >> b'
     227PASS setThenReadSelectorText('a >>b') is 'a >> b'
     228PASS setThenReadSelectorText('a        >>b') is 'a >> b'
     229PASS setThenReadSelectorText('a>> b') is 'a >> b'
     230PASS setThenReadSelectorText('a>>       b') is 'a >> b'
     231PASS setThenReadSelectorText('a        >>       b') is 'a >> b'
    232232PASS setThenReadSelectorText('a+b') is 'a + b'
    233233PASS setThenReadSelectorText('a~b') is 'a ~ b'
  • trunk/LayoutTests/fast/css/css-set-selector-text.html

    r180558 r181258  
    321321debug('');
    322322
    323 shouldBe("setThenReadSelectorText('a>>b { }')", "'a >> b { }'");
    324 shouldBe("setThenReadSelectorText('a >>b { }')", "'a >> b { }'");
    325 shouldBe("setThenReadSelectorText('a        >>b { }')", "'a >> b { }'");
    326 shouldBe("setThenReadSelectorText('a>> b { }')", "'a >> b { }'");
    327 shouldBe("setThenReadSelectorText('a>>       b { }')", "'a >> b { }'");
    328 shouldBe("setThenReadSelectorText('a        >>       b { }')", "'a >> b { }'");
     323shouldBe("setThenReadSelectorText('a>>b')", "'a >> b'");
     324shouldBe("setThenReadSelectorText('a >>b')", "'a >> b'");
     325shouldBe("setThenReadSelectorText('a        >>b')", "'a >> b'");
     326shouldBe("setThenReadSelectorText('a>> b')", "'a >> b'");
     327shouldBe("setThenReadSelectorText('a>>       b')", "'a >> b'");
     328shouldBe("setThenReadSelectorText('a        >>       b')", "'a >> b'");
    329329shouldBe("setThenReadSelectorText('a+b')", "'a + b'");
    330330shouldBe("setThenReadSelectorText('a~b')", "'a ~ b'");
Note: See TracChangeset for help on using the changeset viewer.