Better references.

This commit is contained in:
Michael Howell 2015-07-22 10:49:26 -07:00
parent 91c61ae751
commit 970f018dc8
6 changed files with 5 additions and 7 deletions

View file

@ -4,7 +4,7 @@
* You can obtain one at http://mozilla.org/MPL/2.0/. * You can obtain one at http://mozilla.org/MPL/2.0/.
*/ */
// https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/browser // https://developer.mozilla.org/en-US/docs/Web/API/Using_the_Browser_API
callback BrowserElementNextPaintEventCallback = void (); callback BrowserElementNextPaintEventCallback = void ();

View file

@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/scripting.html#canvaspattern // https://html.spec.whatwg.org/multipage/#canvaspattern
interface CanvasPattern { interface CanvasPattern {
//void setTransform(SVGMatrix matrix); //void setTransform(SVGMatrix matrix);

View file

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://html.spec.whatwg.org/multipage/webappapis.html#the-errorevent-interface // https://html.spec.whatwg.org/multipage/#the-errorevent-interface
[Constructor(DOMString type, optional ErrorEventInit eventInitDict)/*, Exposed=(Window,Worker)*/] [Constructor(DOMString type, optional ErrorEventInit eventInitDict)/*, Exposed=(Window,Worker)*/]
interface ErrorEvent : Event { interface ErrorEvent : Event {

View file

@ -3,7 +3,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// http://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-75708506 // https://dom.spec.whatwg.org/#interface-htmlcollection
interface HTMLCollection { interface HTMLCollection {
readonly attribute unsigned long length; readonly attribute unsigned long length;

View file

@ -2,7 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// https://w3c.github.io/websockets/#the-websocket-interface // https://html.spec.whatwg.org/multipage/#the-websocket-interface
enum BinaryType { "blob", "arraybuffer" }; enum BinaryType { "blob", "arraybuffer" };

View file

@ -173,9 +173,7 @@ def check_webidl_spec(contents):
# a_domain.path().cmp(b_domain.path()) # a_domain.path().cmp(b_domain.path())
# } # }
standards = [ standards = [
"//w3c.github.io",
"//www.khronos.org/registry/webgl/specs", "//www.khronos.org/registry/webgl/specs",
"//developer.mozilla.org/en-US/docs/Mozilla/Tech/XUL/browser",
"//developer.mozilla.org/en-US/docs/Web/API", "//developer.mozilla.org/en-US/docs/Web/API",
"//dev.w3.org/2006/webapi", "//dev.w3.org/2006/webapi",
"//dev.w3.org/csswg", "//dev.w3.org/csswg",