image-orientation-none.html (1334B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>CSS Images Module Level 3: image-orientation: none</title> 6 <link rel="author" title="Stephen Chenney" href="mailto:schenney@chromium.org"> 7 <link rel="help" href="https://drafts.csswg.org/css-images-3/#propdef-image-orientation"> 8 <link rel="match" href="reference/image-orientation-none-ref.html"> 9 <meta name="fuzzy" content="maxDifference=0-100; totalPixels=0-123"> 10 <style> 11 body { 12 overflow: hidden; 13 image-orientation: none; 14 } 15 div { 16 display: inline-block; 17 width: 100px; 18 vertical-align: top; 19 } 20 </style> 21 </head> 22 <body> 23 <p>The images should not rotate respecting their EXIF orientation because 24 image-orientation: none is specified.</p> 25 <div><img src="support/exif-orientation-1-ul.jpg"/></div> 26 <div><img src="support/exif-orientation-2-ur.jpg"/></div> 27 <div><img src="support/exif-orientation-3-lr.jpg"/></div> 28 <div><img src="support/exif-orientation-4-lol.jpg"/></div> 29 <div><img src="support/exif-orientation-5-lu.jpg"/></div> 30 <div><img src="support/exif-orientation-6-ru.jpg"/></div> 31 <div><img src="support/exif-orientation-7-rl.jpg"/></div> 32 <div><img src="support/exif-orientation-8-llo.jpg"/></div> 33 <div><img src="support/exif-orientation-9-u.jpg"/></div> 34 </body> 35 </html>