2012-09-29 23:42:29 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
This test inserts a some inline content in a flex container, just before a
|
|
|
|
stretch of existing inline content. The new content should be incorporated
|
|
|
|
into the same anonymous flex item as the existing content.
|
|
|
|
-->
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
class="reftest-wait">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="ahem.css" />
|
|
|
|
<script>
|
|
|
|
function tweak() {
|
2012-11-07 11:28:59 -08:00
|
|
|
var newInlineContent = document.createTextNode("abc def ghi");
|
2012-09-29 23:42:29 -07:00
|
|
|
|
|
|
|
var flexbox = document.getElementById("flexbox");
|
|
|
|
flexbox.insertBefore(newInlineContent, flexbox.firstChild);
|
|
|
|
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
|
|
|
|
window.addEventListener("MozReftestInvalidate", tweak, false);
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
div#flexbox {
|
|
|
|
width: 100px;
|
2012-10-15 12:42:43 -07:00
|
|
|
display: flex;
|
2012-09-29 23:42:29 -07:00
|
|
|
font: 10px Ahem;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2012-11-07 11:28:59 -08:00
|
|
|
<div id="flexbox"> jkl mno pqr stu</div>
|
2012-09-29 23:42:29 -07:00
|
|
|
</body>
|
|
|
|
</html>
|