1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Implied Photo</title>
</head>
<body>
<!--if img.h-x[src], then use src for photo-->
<img class="h-entry" src="http://example.com/photo.jpg"/>
<!--else if object.h-x[data] then use data for photo-->
<object class="h-entry" data="http://example.com/photo.jpg"></object>
<!--else if .h-x>img[src]:only-of-type:not[.h-*] then use that img src for photo-->
<article class="h-entry">
<img src="http://example.com/photo.jpg"/>
</article>
<article class="h-entry">
<img src="http://example.com/photo.jpg"/>
<span> test </span>
</article>
<!--else if .h-x>object[data]:only-of-type:not[.h-*] then use that object’s data for photo-->
<article class="h-entry">
<object data="http://example.com/photo.jpg"></object>
</article>
<article class="h-entry">
<object data="http://example.com/photo.jpg"></object>
<span> test </span>
</article>
<!--else if .h-x>:only-child:not[.h-*]>img[src]:only-of-type:not[.h-*], then use that img’s src for photo-->
<article class="h-entry">
<div>
<img src="http://example.com/photo.jpg"/>
</div>
</article>
<article class="h-entry">
<div>
<img src="http://example.com/photo.jpg"/>
<span>test</span>
</div>
</article>
<!--else if .h-x>:only-child:not[.h-*]>object[data]:only-of-type:not[.h-*], then use that object’s data for photo -->
<article class="h-entry">
<div>
<object data="http://example.com/photo.jpg"></object>
</div>
</article>
<article class="h-entry">
<div>
<object data="http://example.com/photo.jpg"></object>
<span>test</span>
</div>
</article>
<!--priority tests; prefer img over object-->
<article class="h-entry">
<object data="http://example.com/photo2.jpg"></object>
<img src="http://example.com/photo.jpg"/>
</article>
<article class="h-entry">
<div>
<object data="http://example.com/photo2.jpg"></object>
<img src="http://example.com/photo.jpg"/>
</div>
</article>
<!-- no photo tests -->
<article class="h-entry">
<img src="http://example.com/photo.jpg"/>
<img src="http://example.com/photo2.jpg"/>
</article>
<article class="h-entry">
<img class="h-cite" src="http://example.com/photo.jpg"/>
</article>
<article class="h-entry">
<object data="http://example.com/photo.jpg"></object>
<object data="http://example.com/photo2.jpg"></object>
</article>
<article class="h-entry">
<object class="h-cite" data="http://example.com/photo.jpg"></object>
</article>
<article class="h-entry">
<div>
<img src="http://example.com/photo.jpg"/>
</div>
<span>test</span>
</article>
<article class="h-entry">
<div class="h-cite">
<img src="http://example.com/photo.jpg"/>
</div>
</article>
<article class="h-entry">
<div>
<img src="http://example.com/photo.jpg"/>
<img src="http://example.com/photo2.jpg"/>
</div>
</article>
<article class="h-entry">
<div class="h-cite">
<img class="h-cite" src="http://example.com/photo.jpg"/>
</div>
</article>
<article class="h-entry">
<div>
<object data="http://example.com/photo.jpg"></object>
</div>
<span>test</span>
</article>
<article class="h-entry">
<div class="h-cite">
<object data="http://example.com/photo.jpg"></object>
</div>
</article>
<article class="h-entry">
<div>
<object data="http://example.com/photo.jpg"></object>
<object data="http://example.com/photo2.jpg"></object>
</div>
</article>
</body>
</html>
|