| Index: sdk/lib/html/dart2js/html_dart2js.dart
|
| diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
|
| index 703977ee1f9ac6fba322a7d9e9d802d59012527f..86e56ece6f7b6157d29295a731106f9f19a8cb59 100644
|
| --- a/sdk/lib/html/dart2js/html_dart2js.dart
|
| +++ b/sdk/lib/html/dart2js/html_dart2js.dart
|
| @@ -25475,150 +25475,6 @@ class _StyleSheetList extends Interceptor with ListMixin<StyleSheet>, ImmutableL
|
|
|
|
|
| @DocsEditable
|
| -@DomName('WebKitCSSFilterValue')
|
| -// http://dev.w3.org/csswg/cssom/
|
| -@deprecated // deprecated
|
| -abstract class _WebKitCSSFilterValue extends _CssValueList native "WebKitCSSFilterValue" {
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSMatrix')
|
| -// http://dev.w3.org/csswg/cssom/
|
| -@deprecated // deprecated
|
| -abstract class _WebKitCSSMatrix native "WebKitCSSMatrix" {
|
| -
|
| - @DomName('WebKitCSSMatrix.WebKitCSSMatrix')
|
| - @DocsEditable
|
| - factory _WebKitCSSMatrix([String cssValue]) {
|
| - if (cssValue != null) {
|
| - return _WebKitCSSMatrix._create_1(cssValue);
|
| - }
|
| - return _WebKitCSSMatrix._create_2();
|
| - }
|
| - static _WebKitCSSMatrix _create_1(cssValue) => JS('_WebKitCSSMatrix', 'new WebKitCSSMatrix(#)', cssValue);
|
| - static _WebKitCSSMatrix _create_2() => JS('_WebKitCSSMatrix', 'new WebKitCSSMatrix()');
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSMixFunctionValue')
|
| -// http://dev.w3.org/csswg/cssom/
|
| -@deprecated // deprecated
|
| -abstract class _WebKitCSSMixFunctionValue extends _CssValueList native "WebKitCSSMixFunctionValue" {
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSTransformValue')
|
| -// http://dev.w3.org/csswg/cssom/
|
| -@deprecated // deprecated
|
| -abstract class _WebKitCSSTransformValue extends _CssValueList native "WebKitCSSTransformValue" {
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSFilterRule')
|
| -// http://www.w3.org/TR/filter-effects/
|
| -@Experimental
|
| -class _WebKitCssFilterRule extends CssRule native "WebKitCSSFilterRule" {
|
| -
|
| - @DomName('WebKitCSSFilterRule.style')
|
| - @DocsEditable
|
| - final CssStyleDeclaration style;
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSKeyframeRule')
|
| -// http://www.w3.org/TR/css3-animations/#CSSKeyframeRule-interface
|
| -@Experimental
|
| -class _WebKitCssKeyframeRule extends CssRule native "WebKitCSSKeyframeRule" {
|
| -
|
| - @DomName('WebKitCSSKeyframeRule.keyText')
|
| - @DocsEditable
|
| - String keyText;
|
| -
|
| - @DomName('WebKitCSSKeyframeRule.style')
|
| - @DocsEditable
|
| - final CssStyleDeclaration style;
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSKeyframesRule')
|
| -// http://www.w3.org/TR/css3-animations/#csskeyframesrule
|
| -@Experimental
|
| -class _WebKitCssKeyframesRule extends CssRule native "WebKitCSSKeyframesRule" {
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.cssRules')
|
| - @DocsEditable
|
| - @Returns('_CssRuleList')
|
| - @Creates('_CssRuleList')
|
| - final List<CssRule> cssRules;
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.name')
|
| - @DocsEditable
|
| - String name;
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.__getter__')
|
| - @DocsEditable
|
| - @Experimental // untriaged
|
| - _WebKitCssKeyframeRule __getter__(int index) native;
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.deleteRule')
|
| - @DocsEditable
|
| - void deleteRule(String key) native;
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.findRule')
|
| - @DocsEditable
|
| - _WebKitCssKeyframeRule findRule(String key) native;
|
| -
|
| - @DomName('WebKitCSSKeyframesRule.insertRule')
|
| - @DocsEditable
|
| - void insertRule(String rule) native;
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| -@DomName('WebKitCSSRegionRule')
|
| -// http://dev.w3.org/csswg/css-regions/#region-style-rule-interface
|
| -@Experimental
|
| -class _WebKitCssRegionRule extends CssRule native "WebKitCSSRegionRule" {
|
| -
|
| - @DomName('WebKitCSSRegionRule.cssRules')
|
| - @DocsEditable
|
| - @Returns('_CssRuleList')
|
| - @Creates('_CssRuleList')
|
| - final List<CssRule> cssRules;
|
| -}
|
| -// 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.
|
| -
|
| -
|
| -@DocsEditable
|
| @DomName('WorkerContext')
|
| // http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#WorkerGlobalScope-partial
|
| @Experimental // stable
|
|
|