mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-10 02:08:38 +09:00
Unprefix -moz-read-write / -moz-read-only
This commit is contained in:
parent
e4630ce481
commit
4cc014cb6b
25 changed files with 75 additions and 75 deletions
|
|
@ -45,9 +45,9 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=535043
|
|||
/** Test for Bug 1264157 **/
|
||||
SimpleTest.waitForFocus(function() {
|
||||
// Check the initial values.
|
||||
let active = [].slice.call(document.querySelectorAll("input:not(:disabled):not(:-moz-read-only)"));
|
||||
let active = [].slice.call(document.querySelectorAll("input:not(:disabled):not(:read-only)"));
|
||||
let disabled = [].slice.call(document.querySelectorAll("input:disabled"));
|
||||
let readonly = [].slice.call(document.querySelectorAll("input:-moz-read-only"));
|
||||
let readonly = [].slice.call(document.querySelectorAll("input:read-only"));
|
||||
ok(active.length == 2, "Test is messed up: missing non-disabled/non-readonly inputs");
|
||||
ok(disabled.length == 2, "Test is messed up: missing disabled inputs");
|
||||
ok(readonly.length == 2, "Test is messed up: missing readonly inputs");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue