OLD | NEW |
| (Empty) |
1 <!DOCTYPE HTML> | |
2 | |
3 <html> | |
4 <head> | |
5 <link href="resources/region-style.css" rel="stylesheet" type="text/css"/> | |
6 <style type="text/css"> | |
7 html { | |
8 -webkit-font-smoothing: none; | |
9 } | |
10 | |
11 #source{ | |
12 -webkit-flow-into: main-thread; | |
13 } | |
14 | |
15 .region{ | |
16 -webkit-flow-from: main-thread; | |
17 height: 100px; | |
18 width: 300px; | |
19 border: solid 1px #888; | |
20 } | |
21 </style> | |
22 </head> | |
23 <body> | |
24 <div id="source" class="pass"> | |
25 <p>flow content</p> | |
26 </div> | |
27 <div> | |
28 The words "flow content" in green should display after this div, | |
29 and there should be two copies of this content that match. | |
30 </div> | |
31 <div id="region1" class="region"> | |
32 <div class="error">FAIL if this text is displayed.</div> | |
33 </div> | |
34 <div> | |
35 The words "flow content" in green should display after this div, | |
36 and there should be two copies of this content that match. | |
37 </div> | |
38 <div class="pass"> | |
39 <p>flow content</p> | |
40 </div> | |
41 | |
42 <p>This test checks that content can be redirected to a region. It also | |
43 tries out a validation strategy that recreates the intended display | |
44 using non-region markup. If top does not match the bottom then the | |
45 result should be rejected.</p> | |
46 </body> | |
47 </html> | |
OLD | NEW |