flexbox-dyn-insertAroundDiv-1-ref.xhtml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Any copyright is dedicated to the Public Domain.
  4. http://creativecommons.org/publicdomain/zero/1.0/
  5. -->
  6. <!--
  7. This reference case is like its textcase, but with the testcase's dynamic
  8. modifications already performed.
  9. -->
  10. <html xmlns="http://www.w3.org/1999/xhtml">
  11. <head>
  12. <style>
  13. body { font-size: 10px; }
  14. div.flexbox {
  15. border: 1px dashed blue;
  16. width: 300px;
  17. display: flex;
  18. justify-content: space-around;
  19. margin-bottom: 1px;
  20. white-space: pre;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="flexbox" id="f0"> <div>[OldText]</div></div>
  26. <div class="flexbox" id="f1"><div>[OldText]</div> </div>
  27. <div class="flexbox" id="f2">[NewText]<div>[OldText]</div></div>
  28. <div class="flexbox" id="f3">[NewText] <div>[OldText]</div></div>
  29. <div class="flexbox" id="f4"> [NewText]<div>[OldText]</div></div>
  30. <div class="flexbox" id="f5"><div>[OldText]</div>[NewText]</div>
  31. <div class="flexbox" id="f6"><div>[OldText]</div>[NewText] </div>
  32. <div class="flexbox" id="f7"><div>[OldText]</div> [NewText]</div>
  33. <div class="flexbox" id="f8">[NewText] <div>[OldText]</div></div>
  34. <div class="flexbox" id="f9"> [NewText]<div>[OldText]</div></div>
  35. <div class="flexbox" id="f10"><div>[OldText]</div>[NewText] </div>
  36. <div class="flexbox" id="f11"><div>[OldText]</div> [NewText]</div>
  37. </body>
  38. </html>