Changeset 142558 in webkit


Ignore:
Timestamp:
Feb 11, 2013 5:29:07 PM (11 years ago)
Author:
arko@motorola.com
Message:

[Microdata] Fix crash after r141034 in chromuim port
https://bugs.webkit.org/show_bug.cgi?id=109514

Reviewed by Ryosuke Niwa.

Added V8SkipVTableValidation extended attribute to skip
VTable validation check for DOMSettableTokenList interface.

This patch fixes below test failures:
Tests: fast/dom/MicroData/domsettabletokenlist-attributes-add-token.html

fast/dom/MicroData/domsettabletokenlist-attributes-out-of-range-index.html
fast/dom/MicroData/element-with-empty-itemprop.html
fast/dom/MicroData/itemprop-add-remove-tokens.html
fast/dom/MicroData/itemprop-for-an-element-must-be-correct.html
fast/dom/MicroData/itemprop-must-be-read-only.html
fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html
fast/dom/MicroData/itemref-add-remove-tokens.html
fast/dom/MicroData/itemref-attribute-reflected-by-itemRef-property.html
fast/dom/MicroData/itemref-for-an-element-must-be-correct.html
fast/dom/MicroData/itemref-must-be-read-only.html
fast/dom/MicroData/itemtype-add-remove-tokens.html
fast/dom/MicroData/itemtype-attribute-test.html
fast/dom/MicroData/microdata-domtokenlist-attribute-add-remove-tokens.html
fast/dom/MicroData/properties-collection-namedgetter-with-invalid-name.html
fast/dom/MicroData/propertynodelist-add-remove-itemprop-tokens.html
fast/dom/MicroData/propertynodelist-add-remove-itemref-tokens.html

  • html/DOMSettableTokenList.idl:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r142555 r142558  
     12013-02-11  Arko Saha  <arko@motorola.com>
     2
     3        [Microdata] Fix crash after r141034 in chromuim port
     4        https://bugs.webkit.org/show_bug.cgi?id=109514
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Added V8SkipVTableValidation extended attribute to skip
     9        VTable validation check for DOMSettableTokenList interface.
     10
     11        This patch fixes below test failures:
     12        Tests: fast/dom/MicroData/domsettabletokenlist-attributes-add-token.html
     13               fast/dom/MicroData/domsettabletokenlist-attributes-out-of-range-index.html
     14               fast/dom/MicroData/element-with-empty-itemprop.html
     15               fast/dom/MicroData/itemprop-add-remove-tokens.html
     16               fast/dom/MicroData/itemprop-for-an-element-must-be-correct.html
     17               fast/dom/MicroData/itemprop-must-be-read-only.html
     18               fast/dom/MicroData/itemprop-reflected-by-itemProp-property.html
     19               fast/dom/MicroData/itemref-add-remove-tokens.html
     20               fast/dom/MicroData/itemref-attribute-reflected-by-itemRef-property.html
     21               fast/dom/MicroData/itemref-for-an-element-must-be-correct.html
     22               fast/dom/MicroData/itemref-must-be-read-only.html
     23               fast/dom/MicroData/itemtype-add-remove-tokens.html
     24               fast/dom/MicroData/itemtype-attribute-test.html
     25               fast/dom/MicroData/microdata-domtokenlist-attribute-add-remove-tokens.html
     26               fast/dom/MicroData/properties-collection-namedgetter-with-invalid-name.html
     27               fast/dom/MicroData/propertynodelist-add-remove-itemprop-tokens.html
     28               fast/dom/MicroData/propertynodelist-add-remove-itemref-tokens.html
     29
     30        * html/DOMSettableTokenList.idl:
     31
    1322013-02-11  Adam Barth  <abarth@webkit.org>
    233
  • trunk/Source/WebCore/html/DOMSettableTokenList.idl

    r131172 r142558  
    2525[
    2626    IndexedGetter,
    27     JSGenerateToJSObject
     27    JSGenerateToJSObject,
     28    V8SkipVTableValidation
    2829] interface DOMSettableTokenList : DOMTokenList {
    2930    attribute DOMString value;
Note: See TracChangeset for help on using the changeset viewer.