I'm trying to get my pages to validate and the only error it is now throwing is:
Attribute itemprop not allowed on element a at this point.
My code is as follows:
<div itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="http://www.example.com/dresses" itemprop="url">
<span itemprop="title">Dresses</span>
</a>
</div>
This follows the email given by Google on the following page:
It also seems to follows the HTML5 Microdata specification as well here:
Any ideas why this doesn't validate? What am I missing or is this just too new to for the validator to validate at the moment?