Created
June 8, 2011 14:40
-
-
Save danbri/1014546 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From http://www.whatwg.org/specs/web-apps/current-work/multipage/links.html#names:-the-itemprop-attribute | |
<div itemscope itemref="x"> | |
<p itemprop="b">test</p> | |
<p itemprop="a">2</p> | |
</div> | |
<div id="x"> | |
<p itemprop="a">1</p> | |
</div> | |
http://foolip.org/microdatajs/live/ gives | |
{ | |
"items": [ | |
{ | |
"properties": { | |
"b": [ | |
"test" | |
], | |
"a": [ | |
"2", | |
"1" | |
] | |
} | |
} | |
] | |
} | |
but spec says "In the following example, the "a" property has the values "1" and "2", in that order," |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment