repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 1935035 - Update a macOS-only test that hard-codes child count.
[gecko.git]
/
layout
/
reftests
/
forms
/
textarea
/
appearance-background-change.html
blob
d1c7730513c0565898e3822a5ae26203bda6409d
1
<!doctype
html
>
2
<textarea>
FOO BAR
</textarea><br>
3
<input
value
=
"FOO BAR"
>
4
<script>
5
onload
=
function
() {
6
for
(
let
e
of
document
.
querySelectorAll
(
"input, textarea"
)) {
7
e
.
getBoundingClientRect
().
top
;
8
e
.
style
.
background
=
"transparent"
;
9
}
10
}
11
</script>