mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +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
14
layout/reftests/css-enabled/select/reftest-stylo.list
Normal file
14
layout/reftests/css-enabled/select/reftest-stylo.list
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# DO NOT EDIT! This is a auto-generated temporary list for Stylo testing
|
||||
== select-fieldset-1.html select-fieldset-1.html
|
||||
fails-if(B2G||Mulet) fuzzy-if(skiaContent,1,9) == select-fieldset-2.html select-fieldset-2.html
|
||||
# Initial mulet triage: parity with B2G/B2G Desktop
|
||||
fails-if(B2G||Mulet) == select-fieldset-3.html select-fieldset-3.html
|
||||
# Initial mulet triage: parity with B2G/B2G Desktop
|
||||
fails fuzzy-if(skiaContent,1,9) == select-fieldset-4.html select-fieldset-4.html
|
||||
== select-fieldset-legend-1.html select-fieldset-legend-1.html
|
||||
fails-if(B2G||Mulet) fuzzy-if(skiaContent,2,4) == select-fieldset-legend-2.html select-fieldset-legend-2.html
|
||||
# Initial mulet triage: parity with B2G/B2G Desktop
|
||||
fails-if(B2G||Mulet) fuzzy-if(skiaContent,2,5) == select-fieldset-legend-3.html select-fieldset-legend-3.html
|
||||
# Initial mulet triage: parity with B2G/B2G Desktop
|
||||
fuzzy-if(skiaContent,2,9) == select-fieldset-legend-4.html select-fieldset-legend-4.html
|
||||
fuzzy-if(skiaContent,2,5) == select-fieldset-legend-5.html select-fieldset-legend-5.html
|
||||
9
layout/reftests/css-enabled/select/reftest.list
Normal file
9
layout/reftests/css-enabled/select/reftest.list
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
== select-fieldset-1.html select-fieldset-ref.html
|
||||
fuzzy-if(skiaContent,1,9) == select-fieldset-2.html select-fieldset-ref-disabled.html
|
||||
== select-fieldset-3.html select-fieldset-ref-disabled.html
|
||||
fuzzy-if(skiaContent,1,9) == select-fieldset-4.html select-fieldset-ref.html
|
||||
== select-fieldset-legend-1.html select-fieldset-legend-ref-1.html
|
||||
fuzzy-if(skiaContent,2,4) == select-fieldset-legend-2.html select-fieldset-legend-ref-2.html
|
||||
fuzzy-if(skiaContent,2,5) == select-fieldset-legend-3.html select-fieldset-legend-ref-3.html
|
||||
fuzzy-if(skiaContent,2,9) == select-fieldset-legend-4.html select-fieldset-legend-ref-4.html
|
||||
fuzzy-if(skiaContent,2,5) == select-fieldset-legend-5.html select-fieldset-legend-ref-5.html
|
||||
11
layout/reftests/css-enabled/select/select-fieldset-1.html
Normal file
11
layout/reftests/css-enabled/select/select-fieldset-1.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="enabled">
|
||||
<fieldset class="enabled">
|
||||
<select class="enabled"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
11
layout/reftests/css-enabled/select/select-fieldset-2.html
Normal file
11
layout/reftests/css-enabled/select/select-fieldset-2.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset disabled class="disabled">
|
||||
<fieldset class="disabled">
|
||||
<select class="disabled"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
20
layout/reftests/css-enabled/select/select-fieldset-3.html
Normal file
20
layout/reftests/css-enabled/select/select-fieldset-3.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<script>
|
||||
function onloadHandler()
|
||||
{
|
||||
var fieldsets = document.getElementsByTagName('fieldset');
|
||||
fieldsets[1].disabled = true;
|
||||
fieldsets[0].disabled = false;
|
||||
document.documentElement.className='';
|
||||
}
|
||||
</script>
|
||||
<body onload="onloadHandler();">
|
||||
<fieldset disabled class="enabled">
|
||||
<fieldset class="disabled">
|
||||
<select class="disabled"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
19
layout/reftests/css-enabled/select/select-fieldset-4.html
Normal file
19
layout/reftests/css-enabled/select/select-fieldset-4.html
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<script>
|
||||
function onloadHandler()
|
||||
{
|
||||
var fieldsets = document.getElementsByTagName('fieldset');
|
||||
fieldsets[0].disabled = false;
|
||||
document.documentElement.className='';
|
||||
}
|
||||
</script>
|
||||
<body onload="onloadHandler();">
|
||||
<fieldset disabled class="enabled">
|
||||
<fieldset class="enabled">
|
||||
<select class="enabled"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="disabled" disabled>
|
||||
<legend id='i'>
|
||||
<select class="enabled"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="disabled" disabled>
|
||||
<legend>
|
||||
</legend>
|
||||
<legend>
|
||||
<select class="disabled"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="disabled" disabled>
|
||||
<fieldset class="disabled">
|
||||
<legend>
|
||||
<select class="disabled"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="disabled" disabled>
|
||||
<legend>
|
||||
<fieldset class="enabled">
|
||||
<select class="enabled"></select>
|
||||
</fieldset>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="disabled" disabled>
|
||||
<legend>
|
||||
<fieldset class="disabled" disabled>
|
||||
<legend>
|
||||
<select class="enabled"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
<select class="ref"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
</legend>
|
||||
<legend>
|
||||
<select disabled class="ref"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
<select disabled class="ref"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
<fieldset class="ref">
|
||||
<select class="ref"></select>
|
||||
</fieldset>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
<fieldset class="ref">
|
||||
<legend>
|
||||
<select class="ref"></select>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</legend>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<fieldset class="ref">
|
||||
<select disabled class="ref"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
11
layout/reftests/css-enabled/select/select-fieldset-ref.html
Normal file
11
layout/reftests/css-enabled/select/select-fieldset-ref.html
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel='stylesheet' type='text/css' href='style.css'>
|
||||
<body>
|
||||
<fieldset class="ref">
|
||||
<fieldset class="ref">
|
||||
<select class="ref"></select>
|
||||
</fieldset>
|
||||
</fieldset>
|
||||
</body>
|
||||
</html>
|
||||
23
layout/reftests/css-enabled/select/style.css
Normal file
23
layout/reftests/css-enabled/select/style.css
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
select {
|
||||
-moz-appearance: none;
|
||||
}
|
||||
|
||||
.ref {
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.enabled {
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
:enabled.enabled {
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
.disabled {
|
||||
background-color: green;
|
||||
}
|
||||
|
||||
:enabled.disabled {
|
||||
background-color: red;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue