diff options
Diffstat (limited to 'toolkit/components/microformats/test/lib/maps/h-item.js')
-rw-r--r-- | toolkit/components/microformats/test/lib/maps/h-item.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/toolkit/components/microformats/test/lib/maps/h-item.js b/toolkit/components/microformats/test/lib/maps/h-item.js new file mode 100644 index 000000000..471a8454e --- /dev/null +++ b/toolkit/components/microformats/test/lib/maps/h-item.js @@ -0,0 +1,30 @@ +/* + Copyright (C) 2010 - 2015 Glenn Jones. All Rights Reserved. + MIT License: https://raw.github.com/glennjones/microformat-shiv/master/license.txt +*/ + +var Modules = (function (modules) { + + modules.maps = (modules.maps)? modules.maps : {}; + + modules.maps['h-item'] = { + root: 'item', + name: 'h-item', + subTree: false, + properties: { + 'fn': { + 'map': 'p-name' + }, + 'url': { + 'map': 'u-url' + }, + 'photo': { + 'map': 'u-photo' + } + } + }; + + return modules; + +} (Modules || {})); + |