| Index: lib/html/doc/interface/StyleElement.dart
|
| diff --git a/lib/html/doc/interface/StyleElement.dart b/lib/html/doc/interface/StyleElement.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..de8a21a8ab05bc69dadb7b88345de5a8d0c8d3a7
|
| --- /dev/null
|
| +++ b/lib/html/doc/interface/StyleElement.dart
|
| @@ -0,0 +1,26 @@
|
| +// 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.
|
| +
|
| +/// @domName HTMLStyleElement
|
| +interface StyleElement extends Element default _Elements {
|
| +
|
| + StyleElement();
|
| +
|
| + /** @domName HTMLStyleElement.disabled */
|
| + bool disabled;
|
| +
|
| + /** @domName HTMLStyleElement.media */
|
| + String media;
|
| +
|
| + /** @domName HTMLStyleElement.scoped */
|
| + bool scoped;
|
| +
|
| + /** @domName HTMLStyleElement.sheet */
|
| + final StyleSheet sheet;
|
| +
|
| + /** @domName HTMLStyleElement.type */
|
| + String type;
|
| +}
|
|
|