Changeset 64121 in webkit


Ignore:
Timestamp:
Jul 27, 2010 5:08:36 AM (14 years ago)
Author:
antonm@chromium.org
Message:

2010-07-27 Anton Muhin <antonm@chromium.org>

Reviewed by Darin Adler.

Extend a test checking access to nested elements on the document to cover recent regression in Chromium
https://bugs.webkit.org/show_bug.cgi?id=42980

See http://code.google.com/p/chromium/issues/detail?id=48804 for more details.

  • fast/dom/HTMLDocument/document-special-properties-expected.txt:
  • fast/dom/HTMLDocument/document-special-properties.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64117 r64121  
     12010-07-27  Anton Muhin  <antonm@chromium.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Extend a test checking access to nested elements on the document to cover recent regression in Chromium
     6        https://bugs.webkit.org/show_bug.cgi?id=42980
     7
     8        See http://code.google.com/p/chromium/issues/detail?id=48804 for more details.
     9
     10        * fast/dom/HTMLDocument/document-special-properties-expected.txt:
     11        * fast/dom/HTMLDocument/document-special-properties.html:
     12
    1132010-07-27  Kent Tamura  <tkent@chromium.org>
    214
  • trunk/LayoutTests/fast/dom/HTMLDocument/document-special-properties-expected.txt

    r19979 r64121  
    4343Embed by id (multiple): undefined
    4444Embed by id/name mixed: collection(2) EMBED(name) EMBED(name)
     45Embed by name nested in object with the same name: single EMBED(name)
    4546
    4647Nonexistent iframe name: undefined
  • trunk/LayoutTests/fast/dom/HTMLDocument/document-special-properties.html

    r19979 r64121  
    7272<embed name="embed5" width="0" height="0"></embed>
    7373<embed id="embed5" width="0" height="0"></embed>
     74<object name="embed6"><embed name="embed6"></embed></object>
    7475
    7576<object name="object1" width="0" height="0"></object>
     
    234235testProperty("Embed by id (multiple)", "embed4");
    235236testProperty("Embed by id/name mixed", "embed5");
     237testProperty("Embed by name nested in object with the same name", "embed6");
    236238print("<br>");
    237239
Note: See TracChangeset for help on using the changeset viewer.