Sign in
chromium
/
external
/
github.com
/
web-platform-tests
/
wpt
/
refs/heads/settimeout-active-script
/
.
/
html
/
canvas
/
element
/
2d.text-outside-of-the-flat-tree-ref.html
blob: 707bafd3203610433808979232509d6a506dc3d5 [
file
] [
edit
]
<!doctype html>
<title>
Test reference
</title>
<canvas
id
=
"canvas"
></canvas>
<script>
let canvas
=
document
.
getElementById
(
"canvas"
);
let ctx
=
canvas
.
getContext
(
"2d"
);
ctx
.
font
=
"10px sans-serif"
;
ctx
.
fillText
(
'Hello, world'
,
10
,
10
);
</script>