add missing copyright header

This commit is contained in:
Vincent Sanders 2012-12-17 15:15:11 +00:00
parent 347fdf0743
commit e913a58ee7
3 changed files with 14 additions and 9 deletions

View File

@ -1,4 +1,12 @@
/* DOM bindings entries */
/* Binding to generate interfaces for the DOM IDL
*
* Copyright 2012 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
*/
webidlfile "dom.idl";

View File

@ -1,4 +1,4 @@
/* Binding to generate HTMLcolelction interface
/* Binding to generate HTMLcollection interface
*
* The js_libdom (javascript to libdom) binding type is currently the
* only one implemented and this principly describes that binding.

View File

@ -1,7 +1,4 @@
/* Binding to generate NodeList interface
*
* The js_libdom (javascript to libdom) binding type is currently the
* only one implemented and this principly describes that binding.
*
* Copyright 2012 Vincent Sanders <vince@netsurf-browser.org>
*
@ -32,12 +29,12 @@ preamble %{
webidlfile "dom.idl";
binding nodelist {
type js_libdom; /* the binding type */
type js_libdom; /* the binding type */
interface NodeList; /* The WebIDL interface to generate a binding for */
interface NodeList; /* The WebIDL interface to generate a binding for */
private "dom_nodelist *" nodelist;
private "struct html_content *" htmlc;
private "dom_nodelist *" nodelist;
private "struct html_content *" htmlc;
}
getter length %{