blob: d19c3f01c83b2da2225a077041a371976b035858 [file] [log] [blame]
hmuller@adobe.comb1e25282013-10-25 20:36:21 +00001<!DOCTYPE html>
2<html>
3<head>
4<style>
5 #clear-left {
6 clear: left;
7 font: 20px/1 Ahem, sans-serif;
8 color: green;
9 }
10
11 #clear-left > div {
12 float: left;
13 height: 20px;
14 }
15
16 #shape-outside-block-origin {
17 width: 200px;
18 }
19
20 #shape-outside-same-origin {
21 width: 100px;
22 }
23
24 #shape-outside-data-url {
25 width: 100px;
26 }
27
28 #shape-outside-allow-origin-url {
29 width: 100px;
30 }
31
32 #shape-outside-disallow-origin-url {
33 width: 200px;
34 }
35</style>
36</head>
37<body>
38 <p>Verify that images not allowed by CORS don't affect the layout and that same-origin images, data URLs, and images with a "Access-Control-Allow-Origin: *" header do define the layout.</p>
39 <div id="clear-left"><div id="shape-outside-block-origin"></div>X</div>
40 <div id="clear-left"><div id="shape-outside-same-origin"></div>X</div>
41 <div id="clear-left"><div id="shape-outside-data-url"></div>X</div>
42 <div id="clear-left"><div id="shape-outside-allow-origin-url"></div>X</div>
43 <div id="clear-left"><div id="shape-outside-disallow-origin-url"></div>X</div>
44</body>
45</html>
46
47