mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Adding test.
This commit is contained in:
parent
65ea334fb9
commit
cc4ab43659
18
layout/reftests/bugs/240470-1-ref.html
Normal file
18
layout/reftests/bugs/240470-1-ref.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<body>
|
||||
<html>
|
||||
<select id="test" size="8">
|
||||
</select>
|
||||
<script>
|
||||
var optgroup = document.createElement("optgroup");
|
||||
optgroup.setAttribute('label', 'An optgroup');
|
||||
var option = document.createElement("option");
|
||||
var optionText = document.createTextNode("An option");
|
||||
option.appendChild(optionText);
|
||||
var select = document.getElementById("test");
|
||||
|
||||
optgroup.appendChild(option);
|
||||
select.appendChild(optgroup);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
18
layout/reftests/bugs/240470-1.html
Normal file
18
layout/reftests/bugs/240470-1.html
Normal file
@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<body>
|
||||
<html>
|
||||
<select id="test" size="8">
|
||||
</select>
|
||||
<script>
|
||||
var optgroup = document.createElement("optgroup");
|
||||
optgroup.setAttribute('label', 'An optgroup');
|
||||
var option = document.createElement("option");
|
||||
var optionText = document.createTextNode("An option");
|
||||
option.appendChild(optionText);
|
||||
var select = document.getElementById("test");
|
||||
|
||||
select.appendChild(optgroup);
|
||||
optgroup.appendChild(option);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -95,6 +95,7 @@ fails-if(MOZ_WIDGET_TOOLKIT=="cocoa") == 28811-2a.html 28811-2-ref.html # bug 38
|
||||
== 234964-2.html 234964-2-ref.html
|
||||
== 235593-1.html 235593-1-ref.html
|
||||
== 236539-1.html 236539-1-ref.html
|
||||
== 240470-1.html 240470-1-ref.html
|
||||
== 243266-1.html 243266-1-ref.html
|
||||
== 243302-1.html 243302-1-ref.html
|
||||
== 244932-1.html 244932-1-ref.html
|
||||
|
Loading…
Reference in New Issue
Block a user