| Index: tools/dom/scripts/systemhtml.py
|
| diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
|
| index c8ba61bd58f733b99621cd44b9d02280f1ccdb94..364824ddc256113a7ee6aa0c8b7975d112dfb7f8 100644
|
| --- a/tools/dom/scripts/systemhtml.py
|
| +++ b/tools/dom/scripts/systemhtml.py
|
| @@ -12,6 +12,7 @@ from generator import *
|
| from htmldartgenerator import *
|
|
|
| _js_custom_members = set([
|
| + 'ArrayBuffer.slice',
|
| 'AudioBufferSourceNode.start',
|
| 'AudioBufferSourceNode.stop',
|
| 'AudioContext.createGain',
|
| @@ -67,6 +68,7 @@ _js_custom_members = set([
|
| ])
|
|
|
| js_support_checks = {
|
| + 'ArrayBuffer': "JS('bool', 'typeof window.ArrayBuffer != \"undefined\"')",
|
| 'HTMLContentElement': "Element.isTagSupported('content')",
|
| 'HTMLDataListElement': "Element.isTagSupported('datalist')",
|
| 'HTMLDetailsElement': "Element.isTagSupported('details')",
|
|
|