| OLD | NEW | 
 | (Empty) | 
|   1 <!DOCTYPE html> |  | 
|   2 <html> |  | 
|   3     <head> |  | 
|   4         <script src="../../../resources/js-test.js"></script> |  | 
|   5         <style> |  | 
|   6             #article { -webkit-flow-into: flow; } |  | 
|   7             #region { -webkit-flow-from: flow; } |  | 
|   8         </style> |  | 
|   9     </head> |  | 
|  10     <body> |  | 
|  11         <p>Test region's computed values for z-index.</p> |  | 
|  12         <p>A region establishes a stacking context.</p> |  | 
|  13         <p>On success you should see PASS below</p> |  | 
|  14         <p id="console"></p> |  | 
|  15         <div id="article"></div> |  | 
|  16         <div id="region"></div> |  | 
|  17     </body> |  | 
|  18     <script> |  | 
|  19         if (window.testRunner) |  | 
|  20             window.testRunner.dumpAsText(); |  | 
|  21         shouldBeEqualToString('window.getComputedStyle(document.getElementById("
    region")).zIndex', "0"); |  | 
|  22     </script> |  | 
|  23 </html> |  | 
| OLD | NEW |