mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 05:35:31 +00:00
f134c090a5
--HG-- extra : rebase_source : 1f8b32e7d05b1501859085c8a3e48c1c904bdf8e
21 lines
272 B
HTML
21 lines
272 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<title>Testcase for filters on canvas</title>
|
|
|
|
<style>
|
|
|
|
#checkbox {
|
|
box-shadow: 0 0 0 5px blue;
|
|
}
|
|
|
|
</style>
|
|
|
|
<input type="checkbox" id="checkbox">
|
|
|
|
<script>
|
|
|
|
document.getElementById("checkbox").focus();
|
|
|
|
</script>
|