reorganizes spec cases and fixes a couple few

This commit is contained in:
Jessica Lynn Suttles 2013-02-11 17:17:31 -08:00
parent 67465879fa
commit 72ce8e3cd6
158 changed files with 46 additions and 42 deletions

View file

@ -0,0 +1,3 @@
<!-- http://microformat2-node.jit.su/h-org.html -->
<span class="h-org">Mozilla Foundation</span>

View file

@ -0,0 +1,10 @@
// http://microformat2-node.jit.su/h-org.html
{
"items": [{
"type": ["h-org"],
"properties": {
"name": ["Mozilla Foundation"]
}
}]
}

View file

@ -0,0 +1,3 @@
<!-- http://microformat2-node.jit.su/h-org.html -->
<a class="h-org" href="http://mozilla.org/">Mozilla Foundation</a>

View file

@ -0,0 +1,11 @@
// http://microformat2-node.jit.su/h-org.html
{
"items": [{
"type": ["h-org"],
"properties": {
"name": ["Mozilla Foundation"],
"url": ["http://mozilla.org/"]
}
}]
}

View file

@ -0,0 +1,6 @@
<!-- http://microformat2-node.jit.su/h-org.html -->
<p class="h-org">
<span class="p-organization-name">W3C</span> -
<span class="p-organization-unit">CSS Working Group</span>
</p>

View file

@ -0,0 +1,12 @@
// http://microformat2-node.jit.su/h-org.html
{
"items": [{
"type": ["h-org"],
"properties": {
"organization-name": ["W3C"],
"organization-unit": ["CSS Working Group"],
"name": ["W3C - CSS Working Group"]
}
}]
}