blob: cb5aa2a34d1d399388e5a793539e8cd98bd2d49b [file] [log] [blame]
// 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.
part of html;
/// @domName $DOMNAME
class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
$!MEMBERS
$if DART2JS
CanvasRenderingContext getContext(String contextId) native;
$endif
CanvasRenderingContext2D get context2d => getContext('2d');
}