Changeset 119022 in webkit


Ignore:
Timestamp:
May 30, 2012 7:17:42 PM (12 years ago)
Author:
hayato@chromium.org
Message:

Fix a composed-shadow-tree-walker.html so that it uses correct selectors.
https://bugs.webkit.org/show_bug.cgi?id=87500

Reviewed by Dimitri Glazkov.

Fix a test and an expectation for composed-shadow-tree-walker.html.
A current composed-shadow-tree-walker.html uses class selector
(.class). That's not the test author's intention and the expected
text was wrongly generated based on wrong tests.

  • fast/dom/shadow/composed-shadow-tree-walker-expected.txt:
  • fast/dom/shadow/composed-shadow-tree-walker.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r119019 r119022  
     12012-05-30  Hayato Ito  <hayato@chromium.org>
     2
     3        Fix a composed-shadow-tree-walker.html so that it uses correct selectors.
     4        https://bugs.webkit.org/show_bug.cgi?id=87500
     5
     6        Reviewed by Dimitri Glazkov.
     7
     8        Fix a test and an expectation for composed-shadow-tree-walker.html.
     9        A current composed-shadow-tree-walker.html uses class selector
     10        (.class).  That's not the test author's intention and the expected
     11        text was wrongly generated based on wrong tests.
     12
     13        * fast/dom/shadow/composed-shadow-tree-walker-expected.txt:
     14        * fast/dom/shadow/composed-shadow-tree-walker.html:
     15
    1162012-05-30  Gavin Peters  <gavinp@chromium.org>
    217
  • trunk/LayoutTests/fast/dom/shadow/composed-shadow-tree-walker-expected.txt

    r118111 r119022  
    3838DIV      id=a
    3939        DIV      id=b
     40        DIV      id=d
    4041
    4142Traverse in forward.
    4243DIV      id=a
     44DIV      id=b
     45DIV      id=d
    4346Traverse in backward.
     47DIV      id=d
     48DIV      id=b
    4449DIV      id=a
    4550
     
    4853DIV      id=a
    4954        DIV      id=b
     55        DIV      id=d
     56        DIV      id=c
     57        DIV      id=e
    5058
    5159Traverse in forward.
    5260DIV      id=a
    5361DIV      id=b
     62DIV      id=d
     63DIV      id=c
     64DIV      id=e
    5465Traverse in backward.
    5566DIV      id=e
     67DIV      id=c
    5668DIV      id=d
    57 DIV      id=c
     69DIV      id=b
    5870DIV      id=a
    5971
     
    8092DIV      id=a
    8193        DIV      id=b
    82         DIV      id=f1
    83         DIV      id=f2
     94        DIV      id=c
    8495
    8596Traverse in forward.
    8697DIV      id=a
    8798DIV      id=b
    88 DIV      id=f1
    89 DIV      id=f2
     99DIV      id=c
    90100Traverse in backward.
    91 DIV      id=f2
    92 DIV      id=f1
     101DIV      id=c
    93102DIV      id=b
    94103DIV      id=a
  • trunk/LayoutTests/fast/dom/shadow/composed-shadow-tree-walker.html

    r118111 r119022  
    9999    createDOM('div', {'id': 'a'},
    100100              createShadowRoot(createDOM('div', {'id': 'b'}),
    101                                createDOM('content', {'select': '.d'})),
     101                               createDOM('content', {'select': '#d'})),
    102102              createDOM('div', {'id': 'c'}),
    103103              createDOM('div', {'id': 'd'}),
     
    108108    createDOM('div', {'id': 'a'},
    109109              createShadowRoot(createDOM('div', {'id': 'b'}),
    110                                createDOM('content', {'select': '.d'}),
     110                               createDOM('content', {'select': '#d'}),
    111111                               createDOM('content')),
    112112              createDOM('div', {'id': 'c'}),
     
    118118    createDOM('div', {'id': 'a'},
    119119              createShadowRoot(createDOM('div', {'id': 'b'}),
    120                                createDOM('content', {'select': '.z'},
     120                               createDOM('content', {'select': '#z'},
    121121                                         createDOM('div', {'id': 'f1'}),
    122122                                         createDOM('div', {'id': 'f2'}))),
     
    127127    createDOM('div', {'id': 'a'},
    128128              createShadowRoot(createDOM('div', {'id': 'b'}),
    129                                createDOM('content', {'select': '.c'},
     129                               createDOM('content', {'select': '#c'},
    130130                                         createDOM('div', {'id': 'f1'}),
    131131                                         createDOM('div', {'id': 'f2'}))),
Note: See TracChangeset for help on using the changeset viewer.