Changeset 98888 in webkit


Ignore:
Timestamp:
Oct 31, 2011 3:22:50 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Microdata: Support for itemid attribute.
https://bugs.webkit.org/show_bug.cgi?id=71007

Patch by Arko Saha <arko@motorola.com> on 2011-10-31
Reviewed by Ryosuke Niwa.

Source/WebCore:

itemid attribute: To give a global identifier for the Microdata items.
The itemid attribute, if specified, must have a value that is a valid URL potentially
surrounded by spaces.
Spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html#attr-itemid

Tests: fast/dom/MicroData/itemid-attribute-test.html

fast/dom/MicroData/itemid-must-see-resolved-url.html

  • html/HTMLElement.idl:

LayoutTests:

Added test-cases for itemid attribute.

  • fast/dom/MicroData/itemid-attribute-test-expected.txt: Added.
  • fast/dom/MicroData/itemid-attribute-test.html: Added.
  • fast/dom/MicroData/itemid-must-see-resolved-url-expected.txt: Added.
  • fast/dom/MicroData/itemid-must-see-resolved-url.html: Added.
Location:
trunk
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r98886 r98888  
     12011-10-31  Arko Saha  <arko@motorola.com>
     2
     3        Microdata: Support for itemid attribute.
     4        https://bugs.webkit.org/show_bug.cgi?id=71007
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Added test-cases for itemid attribute.
     9
     10        * fast/dom/MicroData/itemid-attribute-test-expected.txt: Added.
     11        * fast/dom/MicroData/itemid-attribute-test.html: Added.
     12        * fast/dom/MicroData/itemid-must-see-resolved-url-expected.txt: Added.
     13        * fast/dom/MicroData/itemid-must-see-resolved-url.html: Added.
     14
    1152011-10-31  Benjamin Poulain  <benjamin@webkit.org>
    216
  • trunk/Source/WebCore/ChangeLog

    r98885 r98888  
     12011-10-31  Arko Saha  <arko@motorola.com>
     2
     3        Microdata: Support for itemid attribute.
     4        https://bugs.webkit.org/show_bug.cgi?id=71007
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        itemid attribute: To give a global identifier for the Microdata items.
     9        The itemid attribute, if specified, must have a value that is a valid URL potentially
     10        surrounded by spaces.
     11        Spec: http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html#attr-itemid
     12
     13        Tests: fast/dom/MicroData/itemid-attribute-test.html
     14               fast/dom/MicroData/itemid-must-see-resolved-url.html
     15
     16        * html/HTMLElement.idl:
     17
    1182011-10-31  Yury Semikhatsky  <yurys@chromium.org>
    219
  • trunk/Source/WebCore/html/HTMLElement.idl

    r98353 r98888  
    6969                 attribute [Conditional=MICRODATA, Reflect] boolean itemScope;
    7070        readonly attribute [Conditional=MICRODATA] DOMSettableTokenList itemType;
    71                  attribute [Conditional=MICRODATA, Reflect] DOMString itemId;
     71                 attribute [Conditional=MICRODATA, Reflect, URL] DOMString itemId;
    7272
    7373        readonly attribute [Conditional=MICRODATA] DOMSettableTokenList itemRef;
Note: See TracChangeset for help on using the changeset viewer.