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 1867925 - Mark some storage-access-api tests as intermittent after wpt-sync....
[gecko.git]
/
layout
/
svg
/
crashtests
/
1403656-1.html
blob
996562d150372f7a228d7b03b7dc9e9dd30b5579
1
<!DOCTYPE
html
>
2
<html
class
=
"filtered"
>
3
<style>
4
.filtered {
5
filter: url(#notsvg);
6
}
7
#notsvg {
8
float: left;
9
overflow: auto;
10
}
11
</style>
12
<script>
13
function
go
() {
14
const
div
=
document
.
createElement
(
'div'
)
15
div
.
setAttribute
(
'id'
,
'notsvg'
)
16
document
.
documentElement
.
appendChild
(
div
)
17
}
18
</script>
19
<body
onload
=
"go();"
class
=
"filtered"
>