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