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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 2868483002: Add dynamic declaration to CssRectangle width/height setters (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 3 years, 7 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/src/CssRectangle.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 4725c544f91e63426f25ef3349730abf8a196e2f..9546a9834bbdc6f5de3e5077f3841bde57eda9cf 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -46572,7 +46572,7 @@ class _ContentCssRect extends CssRect {
* `height` function in jQuery and the calculated `height` CSS value,
* converted to a num in pixels.
*/
- set height(newHeight) {
+ set height(dynamic newHeight) {
if (newHeight is Dimension) {
if (newHeight.value < 0) newHeight = new Dimension.px(0);
_element.style.height = newHeight.toString();
@@ -46592,7 +46592,7 @@ class _ContentCssRect extends CssRect {
* and the calculated
* `width` CSS value, converted to a dimensionless num in pixels.
*/
- set width(newWidth) {
+ set width(dynamic newWidth) {
if (newWidth is Dimension) {
if (newWidth.value < 0) newWidth = new Dimension.px(0);
_element.style.width = newWidth.toString();
@@ -46752,7 +46752,7 @@ abstract class CssRect implements Rectangle<num> {
*
* Note that only the content height can actually be set via this method.
*/
- set height(newHeight) {
+ set height(dynamic newHeight) {
throw new UnsupportedError("Can only set height for content rect.");
}
@@ -46766,7 +46766,7 @@ abstract class CssRect implements Rectangle<num> {
*
* Note that only the content width can be set via this method.
*/
- set width(newWidth) {
+ set width(dynamic newWidth) {
throw new UnsupportedError("Can only set width for content rect.");
}
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/src/CssRectangle.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698