summaryrefslogtreecommitdiff
path: root/test/data/bindings/browser-duk.bnd
blob: 273eae95cef89c36d1a20678d276f83ee2705353 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* Binding for browser using ductape and libdom
 *
 * Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * Released under the terms of the MIT License,
 *         http://www.opensource.org/licenses/mit-license
 */

binding duk_libdom {
	webidl "dom.idl";
	webidl "html.idl";
	webidl "uievents.idl";
	webidl "console.idl";

	preface %{
/* DukTape JavaScript bindings for NetSurf browser
 *
 * Copyright 2015 Vincent Sanders <vince@netsurf-browser.org>
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 * Released under the terms of the MIT License,
 *        http://www.opensource.org/licenses/mit-license
 */
		%};

	prologue %{
/* binding prologue */
		%};

	epilogue %{
/* binding epilogue */
		%};

	postface %{
/* binding postface */
		%};	
}

#include "HTMLUnknownElement.bnd"

class Node {
	private "dom_node *" node;

	preface %{
		%};

	prologue %{
		%};

	epilogue %{
		%};

	postface %{
		%};	
}

init Node("dom_node *" node)
%{
    private->node = node;
    dom_node_ref(node);
%}

fini Node()
%{
    dom_node_unref(private->node);
%}

method Node::AppendChild()
%{
%}

getter Node::aprop()
%{
%}

setter Node::aprop()
%{
%}