mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 14:57:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
25
layout/reftests/bugs/315920-14.html
Normal file
25
layout/reftests/bugs/315920-14.html
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
label {color: red}
|
||||
input[checked]:checked:default ~ label {color: green}
|
||||
</style>
|
||||
</head>
|
||||
<body onload='var form = document.getElementById("form");
|
||||
var input2 = document.createElement("input");
|
||||
input2.setAttribute("type", "checkbox");
|
||||
input2.setAttribute("id", "two");
|
||||
input2.setAttribute("checked", "true");
|
||||
form.insertBefore(input2, form.firstChild);
|
||||
var label2 = document.createElement("label");
|
||||
label2.setAttribute("for", "two");
|
||||
var text2 = document.createTextNode("Should be no red");
|
||||
label2.appendChild(text2);
|
||||
form.insertBefore(label2, document.getElementById("one"));'>
|
||||
<form id="form">
|
||||
<input type="checkbox" name="group1" id="one" value="1"/>
|
||||
<label for="one">Should be no red</label>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue