1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/dom/multipleinsertionpoints-ref2.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head> 1.6 + 1.7 +<bindings xmlns="http://www.mozilla.org/xbl" 1.8 + xmlns:xhtml="http://www.w3.org/1999/xhtml"> 1.9 + <binding id="a"> 1.10 + <content> 1.11 + <xhtml:div> 1.12 + <children includes="span"/> 1.13 + </xhtml:div> 1.14 + <xhtml:div> 1.15 + <children/> 1.16 + </xhtml:div> 1.17 + </content> 1.18 + </binding> 1.19 +</bindings> 1.20 + 1.21 +</head> 1.22 + 1.23 +<body> 1.24 +<div style="-moz-binding: url(#a);"> 1.25 + <div>3</div><span>1</span><div>4</div><span>2</span><div>5</div> 1.26 +</div> 1.27 +</body> 1.28 +</html>