 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> | |
| 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 div { | |
| 6 padding: 1; | |
| 7 } | |
| 8 .content { | |
| 9 -webkit-flow-into: flow; | |
| 10 } | |
| 11 .region { | |
| 12 -webkit-flow-from: flow; | |
| 13 border:solid 1px red; | |
| 14 } | |
| 15 | |
| 16 .redirectContent { | |
| 17 -webkit-flow-into: redirectFlow; | |
| 18 } | |
| 19 .redirectRegion { | |
| 20 -webkit-flow-from: redirectFlow; | |
| 21 border:solid 1px blue; | |
| 22 margin-top: 10px; | |
| 23 margin-bottom: 10px; | |
| 24 } | |
| 25 | |
| 26 .redirectContent2 { | |
| 27 -webkit-flow-into: redirectFlow2; | |
| 28 } | |
| 29 .redirectRegion2 { | |
| 30 -webkit-flow-from: redirectFlow2; | |
| 31 border:solid 1px green; | |
| 32 } | |
| 33 | |
| 34 .redirectContentToNowhere { | |
| 35 -webkit-flow-into: redirectToNowhere; | |
| 36 } | |
| 37 | |
| 38 .displayNone { | |
| 39 display: none; | |
| 40 } | |
| 41 </style> | |
| 42 <template class="content">PASS r0: content that goes in the region.</tem plate> | |
| 
esprehn
2013/06/28 20:29:36
Same thing, this is the same as an empty <div>. If
 | |
| 43 </head> | |
| 44 | |
| 45 <body> | |
| 46 <div class="region"> | |
| 47 FAIL: this should not be visible 1. | |
| 48 | |
| 49 <span class="redirectContentToNowhere">FAIL: this should not be visi ble (redirected to nowhere) 1.</span> | |
| 50 | |
| 51 <div class="redirectContent">PASS r1: content in the region that has flow-into. 1.</div> | |
| 52 | |
| 53 FAIL: this should not be visible 2. | |
| 54 | |
| 55 <div> | |
| 56 FAIL: this should not be visible 3. | |
| 57 | |
| 58 <div class="redirectContent">PASS r1: (enclosed in a div) conten t in the region that has flow-into. 2. | |
| 59 <div class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere) 2.</div> | |
| 60 <b><br/>PASS r1: (b enclosed in the div above) content in th e region that has flow-into. 3.</b> | |
| 61 </div> | |
| 62 | |
| 63 FAIL: this should not be visible 4. | |
| 64 </div> | |
| 65 | |
| 66 <div> | |
| 67 FAIL: this should not be visible 5. | |
| 68 | |
| 69 <div class="redirectContent">PASS r1: (enclosed in a div) conten t in the region that has flow-into. 4. | |
| 70 <span class="redirectContent2">PASS r2: content that is alre ady in a flow goes to another flow | |
| 71 <span class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere) 3.</span>. | |
| 72 </span> | |
| 73 </div> | |
| 74 | |
| 75 FAIL: this should not be visible 7. | |
| 76 </div> | |
| 77 | |
| 78 FAIL: this should not be visible 8. | |
| 79 | |
| 80 <span class="redirectContentToNowhere">FAIL: this should not be visi ble (redirected to nowhere) 4.</span> | |
| 81 | |
| 82 <div class="redirectContent">PASS r1: content in the region that has flow-into. 5.</div> | |
| 83 | |
| 84 FAIL: this should not be visible 9. | |
| 85 | |
| 86 <div class="displayNone"> | |
| 87 FAIL: this should not be visible 10. | |
| 88 | |
| 89 <div class="redirectContent">FAIL r1: (enclosed in a div) conten t in the region that has flow-into but display:none | |
| 90 <div class="redirectContentToNowhere">FAIL: this should not be visible (redirected to nowhere AND display:none)</div> | |
| 91 <b><br/>FAIL r1: (b enclosed in the div above) content in th e region that has flow-into but display:none</b> | |
| 92 </div> | |
| 93 | |
| 94 FAIL: this should not be visible 4. | |
| 95 </div> | |
| 96 </div> | |
| 97 | |
| 98 <div class="redirectRegion"> | |
| 99 FAIL: this should not be visible 10. | |
| 100 </div> | |
| 101 | |
| 102 <div class="redirectRegion2"> | |
| 103 FAIL: this should not be visible 11. | |
| 104 </div> | |
| 105 | |
| 106 <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> | |
| 107 </body> | |
| 108 </html> | |
| OLD | NEW |