 Chromium Code Reviews
 Chromium Code Reviews Issue 18080016:
  [CSS Regions] Elements in a region should be assignable to a named flow  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 18080016:
  [CSS Regions] Elements in a region should be assignable to a named flow  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <html> | |
| 
Mihai Maerean
2013/07/01 19:03:36
Julien asked at https://codereview.chromium.org/15
 | |
| 2 <head> | |
| 3 <title>228566 - [CSS Regions] Elements in a region should be assignable to a named flow</title> | |
| 4 <style type="text/css"> | |
| 5 .content { | |
| 6 -webkit-flow-into: flow; | |
| 7 } | |
| 8 .region { | |
| 9 -webkit-flow-from: flow; | |
| 10 border:solid 1px red; | |
| 11 } | |
| 12 | |
| 13 .redirectContent { | |
| 14 -webkit-flow-into: redirectFlow; | |
| 15 } | |
| 16 .redirectRegion { | |
| 17 -webkit-flow-from: redirectFlow; | |
| 18 border:solid 1px blue; | |
| 19 margin-top: 10px; | |
| 20 margin-bottom: 10px; | |
| 21 } | |
| 22 | |
| 23 .redirectContent2 { | |
| 24 -webkit-flow-into: redirectFlow2; | |
| 25 } | |
| 26 .redirectRegion2 { | |
| 27 -webkit-flow-from: redirectFlow2; | |
| 28 border:solid 1px green; | |
| 29 } | |
| 30 | |
| 31 .redirectContentToNowhere { | |
| 32 -webkit-flow-into: redirectToNowhere; | |
| 33 } | |
| 34 | |
| 35 .displayNone { | |
| 36 display: none; | |
| 37 } | |
| 38 </style> | |
| 39 </head> | |
| 40 | |
| 41 <body> | |
| 42 <div class="content">PASS r0: content that goes in the region.</div> | |
| 43 <div class="region"> | |
| 44 FAIL: this should not be visible 1. | |
| 45 | |
| 46 <span class="redirectContentToNowhere">FAIL: this should not be visi ble (redirected to nowhere) 1.</span> | |
| 47 | |
| 48 <div class="redirectContent">PASS r1: content in the region that has flow-into. 1.</div> | |
| 49 | |
| 50 FAIL: this should not be visible 2. | |
| 51 | |
| 52 <div> | |
| 53 FAIL: this should not be visible 3. | |
| 54 | |
| 55 <div class="redirectContent">PASS r1: (enclosed in a div) conten t in the region that has flow-into. 2. | |
| 56 <div class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere) 2.</div> | |
| 57 <b><br/>PASS r1: (b enclosed in the div above) content in th e region that has flow-into. 3.</b> | |
| 58 </div> | |
| 59 | |
| 60 FAIL: this should not be visible 4. | |
| 61 </div> | |
| 62 | |
| 63 <div> | |
| 64 FAIL: this should not be visible 5. | |
| 65 | |
| 66 <div class="redirectContent">PASS r1: (enclosed in a div) conten t in the region that has flow-into. 4. | |
| 67 <span class="redirectContent2">PASS r2: content that is alre ady in a flow goes to another flow | |
| 68 <span class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere) 3.</span>. | |
| 69 </span> | |
| 70 </div> | |
| 71 | |
| 72 FAIL: this should not be visible 7. | |
| 73 </div> | |
| 74 | |
| 75 FAIL: this should not be visible 8. | |
| 76 | |
| 77 <span class="redirectContentToNowhere">FAIL: this should not be visi ble (redirected to nowhere) 4.</span> | |
| 78 | |
| 79 <div class="redirectContent">PASS r1: content in the region that has flow-into. 5.</div> | |
| 80 | |
| 81 FAIL: this should not be visible 9. | |
| 82 | |
| 83 <div class="displayNone"> | |
| 84 FAIL: this should not be visible 10. | |
| 85 | |
| 86 <div class="redirectContent">FAIL r1: (enclosed in a div) conten t in the region that has flow-into but display:none | |
| 87 <div class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere AND display:none)</div> | |
| 88 <b><br/>FAIL r1: (b enclosed in the div above) content in th e region that has flow-into but display:none</b> | |
| 89 </div> | |
| 90 | |
| 91 FAIL: this should not be visible 4. | |
| 92 </div> | |
| 93 </div> | |
| 94 | |
| 95 <div class="redirectRegion"> | |
| 96 FAIL: this should not be visible 10. | |
| 97 </div> | |
| 98 | |
| 99 <div class="redirectRegion2"> | |
| 100 FAIL: this should not be visible 11. | |
| 101 </div> | |
| 102 | |
| 103 <p><a href="http://code.google.com/p/chromium/issues/detail?id=228566">B ug 228566</a> - [CSS Regions] Elements in a region should be assignable to a nam ed flow</p> | |
| 104 </body> | |
| 105 </html> | |
| OLD | NEW |