image-orientation-exif-png-3.html (740B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Images Module Level 3: late EXIF data is ignored</title> 4 <link rel="author" title="Elika J. Etemad" href="http://fantasai.inkedblade.net/contact"> 5 <link rel="author" title="Chris Lilley" href="https://svgees.us/"> 6 <link rel="help" href="https://drafts.csswg.org/css-images-3/#url-metadata"> 7 <link rel="help" href="https://w3c.github.io/PNG-spec/#eXIf"> 8 <link rel="match" href="reference/image-orientation-exif-png-ref.html"> 9 <style> 10 div { width: 400px; height: 400px; display: inline-block; } 11 div.early { background-image: url(support/F-exif-chunk-early.png)} 12 div.late {background-image: url(support/F-exif-late.png)} 13 </style> 14 <div class="early"></div> 15 <div class="late"></div>