Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8203)

Unified Diff: client/dom/dom.dart

Issue 9677012: Port the SVG code to the wrapperless DOM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/dom/frog/dom_frog.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/dom.dart
diff --git a/client/dom/dom.dart b/client/dom/dom.dart
index b000b27bc9e683a189c1191b3d5eda39474346d7..b96c6ad08fc3e598f3d163ebbdf63f6b4cefbcea 100644
--- a/client/dom/dom.dart
+++ b/client/dom/dom.dart
@@ -700,12 +700,6 @@ interface CSSPrimitiveValue extends CSSValue {
static final int CSS_URI = 20;
- static final int CSS_VH = 27;
-
- static final int CSS_VMIN = 28;
-
- static final int CSS_VW = 26;
-
final int primitiveType;
Counter getCounterValue();
@@ -2258,6 +2252,18 @@ interface DynamicsCompressorNode extends AudioNode {
// WARNING: Do not edit - generated code.
+interface EXTTextureFilterAnisotropic {
+
+ static final int MAX_TEXTURE_MAX_ANISOTROPY_EXT = 0x84FF;
+
+ static final int TEXTURE_MAX_ANISOTROPY_EXT = 0x84FE;
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
interface Element extends Node, NodeSelector, ElementTraversal {
static final int ALLOW_KEYBOARD_INPUT = 1;
@@ -3372,6 +3378,8 @@ interface HTMLDocument extends Document {
String fgColor;
+ final int height;
+
String linkColor;
final HTMLCollection plugins;
@@ -3380,6 +3388,8 @@ interface HTMLDocument extends Document {
String vlinkColor;
+ final int width;
+
void captureEvents();
void clear();
@@ -3484,6 +3494,10 @@ interface HTMLFieldSetElement extends HTMLElement {
final HTMLFormElement form;
+ String name;
+
+ final String type;
+
final String validationMessage;
final ValidityState validity;
@@ -4438,6 +4452,8 @@ interface HTMLSelectElement extends HTMLElement {
int selectedIndex;
+ final HTMLCollection selectedOptions;
+
int size;
final String type;
@@ -4766,8 +4782,6 @@ interface HTMLTrackElement extends HTMLElement {
static final int NONE = 0;
- bool isDefault;
-
String kind;
String label;
@@ -9365,6 +9379,8 @@ interface ShadowRoot extends DocumentFragment default _ShadowRootFactoryProvider
ShadowRoot(Element host);
+ final Element activeElement;
+
final Element host;
String innerHTML;
« no previous file with comments | « no previous file | client/dom/frog/dom_frog.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698