1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/w3c-css/submitted/flexbox/flexbox-anonymous-items-1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE html> 1.5 +<!-- 1.6 + Any copyright is dedicated to the Public Domain. 1.7 + http://creativecommons.org/publicdomain/zero/1.0/ 1.8 +--> 1.9 +<html> 1.10 +<head> 1.11 + <title>CSS Test: Testing that we gracefully handle cases where two anonymous flex items become adjacent due to "order" reordering</title> 1.12 + <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"> 1.13 + <link rel="help" href="http://www.w3.org/TR/css3-flexbox/#flex-items"> 1.14 + <link rel="match" href="flexbox-anonymous-items-1-ref.html"> 1.15 + <meta charset="utf-8"> 1.16 + <style> 1.17 + .flexContainer { 1.18 + display: flex; 1.19 + } 1.20 + </style> 1.21 +</head> 1.22 +<body> 1.23 + <div class="flexContainer"> 1.24 + a a 1.25 + <div style="order: 1">x x</div> 1.26 + b b 1.27 + </div> 1.28 +</body> 1.29 +</html>