- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathExample.html
More file actions
Latest commit
34 lines (34 loc) · 1.65 KB
/
Copy pathExample.html
File metadata and controls
34 lines (34 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<scripttype="text/javascript" src="BrowserFeatures.min.js"></script>
<scripttype="text/javascript">
window.addEventListener("load",function()
{
//browser.function_generator
document.write("<b>"+"FunctionGenerator"+"</b> : "+browser.function_generator+"<br>");
//browser.function_async
document.write("<b>"+"FunctionAsync"+"</b> : "+browser.function_async+"<br>");
//browser.function_generator_async
document.write("<b>"+"FunctionGeneratorAsync"+"</b> : "+browser.function_generator_async+"<br>");
//browser.event_target
document.write("<b>"+"EventTarget"+"</b> : "+browser.event_target+"<br>");
//browser.data_transfer_item
document.write("<b>"+"DataTransferItem"+"</b> : "+browser.data_transfer_item+"<br>");
//browser.data_transfer_item_list
document.write("<b>"+"DataTransferItemList"+"</b> : "+browser.data_transfer_item_list+"<br>");
//browser.broad_cast_channel
document.write("<b>"+"BroadCastChannel"+"</b> : "+browser.broad_cast_channel+"<br>");
//browser.viewport
document.write("<b>"+"ViewPort"+"</b> : "+browser.viewport+"<br>");
//browser.font
document.write("<b>"+"Font"+"</b> : "+browser.font+"<br>");
//browser.custom_element
document.write("<b>"+"CustomElement"+"</b> : "+browser.custom_element+"<br>");
//browser.animate
document.write("<b>"+"Animate"+"</b> : "+browser.animate+"<br>");
//browser.svg
document.write("<b>"+"SVG"+"</b> : "+browser.svg+"<br>");
//browser.touch
document.write("<b>"+"Touch"+"</b> : "+browser.touch+"<br>");
//browser.webgl
document.write("<b>"+"WebGL"+"</b> : "+browser.webgl+"<br>");
});
</script>