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

Side by Side Diff: tools/dom/templates/html/impl/impl_Element.darttemplate

Issue 304303010: Clamp output to int (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove dart2js changes Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/co19/co19-dartium.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of $LIBRARYNAME; 5 part of $LIBRARYNAME;
6 6
7 class _ChildrenElementList extends ListBase<Element> 7 class _ChildrenElementList extends ListBase<Element>
8 implements NodeListWrapper { 8 implements NodeListWrapper {
9 // Raw Element. 9 // Raw Element.
10 final Element _element; 10 final Element _element;
(...skipping 1310 matching lines...) Expand 10 before | Expand all | Expand 10 after
1321 1321
1322 /** 1322 /**
1323 * This is an ease-of-use accessor for event streams which should only be 1323 * This is an ease-of-use accessor for event streams which should only be
1324 * used when an explicit accessor is not available. 1324 * used when an explicit accessor is not available.
1325 */ 1325 */
1326 ElementEvents get on => new ElementEvents(this); 1326 ElementEvents get on => new ElementEvents(this);
1327 1327
1328 $if DART2JS 1328 $if DART2JS
1329 @DomName('Element.offsetHeight') 1329 @DomName('Element.offsetHeight')
1330 @DocsEditable() 1330 @DocsEditable()
1331 final num offsetHeight; 1331 num get offsetHeight => JS('num', '#.offsetHeight', this).round();
1332 1332
1333 @DomName('Element.offsetLeft') 1333 @DomName('Element.offsetLeft')
1334 @DocsEditable() 1334 @DocsEditable()
1335 final num offsetLeft; 1335 num get offsetLeft => JS('num', '#.offsetLeft', this).round();
1336 1336
1337 @DomName('Element.offsetTop') 1337 @DomName('Element.offsetTop')
1338 @DocsEditable() 1338 @DocsEditable()
1339 final num offsetTop; 1339 num get offsetTop => JS('num', '#.offsetTop', this).round();
1340 1340
1341 @DomName('Element.offsetWidth') 1341 @DomName('Element.offsetWidth')
1342 @DocsEditable() 1342 @DocsEditable()
1343 final num offsetWidth; 1343 num get offsetWidth => JS('num', '#.offsetWidth', this).round();
1344 1344
1345 @DomName('Element.clientHeight') 1345 @DomName('Element.clientHeight')
1346 @DocsEditable() 1346 @DocsEditable()
1347 final num clientHeight; 1347 num get clientHeight => JS('num', '#.clientHeight', this).round();
1348 1348
1349 @DomName('Element.clientLeft') 1349 @DomName('Element.clientLeft')
1350 @DocsEditable() 1350 @DocsEditable()
1351 final num clientLeft; 1351 num get clientLeft => JS('num', '#.clientLeft', this).round();
1352 1352
1353 @DomName('Element.clientTop') 1353 @DomName('Element.clientTop')
1354 @DocsEditable() 1354 @DocsEditable()
1355 final num clientTop; 1355 num get clientTop => JS('num', '#.clientTop', this).round();
1356 1356
1357 @DomName('Element.clientWidth') 1357 @DomName('Element.clientWidth')
1358 @DocsEditable() 1358 @DocsEditable()
1359 final num clientWidth; 1359 num get clientWidth => JS('num', '#.clientWidth', this).round();
1360 1360
1361 @DomName('Element.scrollHeight') 1361 @DomName('Element.scrollHeight')
1362 @DocsEditable() 1362 @DocsEditable()
1363 final num scrollHeight; 1363 num get scrollHeight => JS('num', '#.scrollHeight', this).round();
1364 1364
1365 @DomName('Element.scrollLeft') 1365 @DomName('Element.scrollLeft')
1366 @DocsEditable() 1366 @DocsEditable()
1367 num scrollLeft; 1367 num get scrollLeft => JS('num', '#.scrollLeft', this).round();
1368
1369 @DomName('Element.scrollLeft')
1370 @DocsEditable()
1371 void set scrollLeft(num value) => JS("void", "#.scrollLeft = #", this, value.r ound());
1368 1372
1369 @DomName('Element.scrollTop') 1373 @DomName('Element.scrollTop')
1370 @DocsEditable() 1374 @DocsEditable()
1371 num scrollTop; 1375 num get scrollTop => JS('num', '#.scrollTop', this).round();
1376
1377 @DomName('Element.scrollTop')
1378 @DocsEditable()
1379 void set scrollTop(num value) => JS("void", "#.scrollTop = #", this, value.rou nd());
1372 1380
1373 @DomName('Element.scrollWidth') 1381 @DomName('Element.scrollWidth')
1374 @DocsEditable() 1382 @DocsEditable()
1375 final num scrollWidth; 1383 num get scrollWidth => JS('num', '#.scrollWidth', this).round();
1376 1384
1377 $else 1385 $else
1378 @DomName('Element.offsetHeight') 1386 @DomName('Element.offsetHeight')
1379 @DocsEditable() 1387 @DocsEditable()
1380 num get offsetHeight => _blink.Native_Element_offsetHeight_Getter(this); 1388 num get offsetHeight => _blink.Native_Element_offsetHeight_Getter(this).round( );
1381 1389
1382 @DomName('Element.offsetLeft') 1390 @DomName('Element.offsetLeft')
1383 @DocsEditable() 1391 @DocsEditable()
1384 num get offsetLeft => _blink.Native_Element_offsetLeft_Getter(this); 1392 num get offsetLeft => _blink.Native_Element_offsetLeft_Getter(this).round();
1385 1393
1386 @DomName('Element.offsetTop') 1394 @DomName('Element.offsetTop')
1387 @DocsEditable() 1395 @DocsEditable()
1388 num get offsetTop => _blink.Native_Element_offsetTop_Getter(this); 1396 num get offsetTop => _blink.Native_Element_offsetTop_Getter(this).round();
1389 1397
1390 @DomName('Element.offsetWidth') 1398 @DomName('Element.offsetWidth')
1391 @DocsEditable() 1399 @DocsEditable()
1392 num get offsetWidth => _blink.Native_Element_offsetWidth_Getter(this); 1400 num get offsetWidth => _blink.Native_Element_offsetWidth_Getter(this).round();
1393 1401
1394 @DomName('Element.clientHeight') 1402 @DomName('Element.clientHeight')
1395 @DocsEditable() 1403 @DocsEditable()
1396 num get clientHeight => _blink.Native_Element_clientHeight_Getter(this); 1404 num get clientHeight => _blink.Native_Element_clientHeight_Getter(this).round( );
1397 1405
1398 @DomName('Element.clientLeft') 1406 @DomName('Element.clientLeft')
1399 @DocsEditable() 1407 @DocsEditable()
1400 num get clientLeft => _blink.Native_Element_clientLeft_Getter(this); 1408 num get clientLeft => _blink.Native_Element_clientLeft_Getter(this).round();
1401 1409
1402 @DomName('Element.clientTop') 1410 @DomName('Element.clientTop')
1403 @DocsEditable() 1411 @DocsEditable()
1404 num get clientTop => _blink.Native_Element_clientTop_Getter(this); 1412 num get clientTop => _blink.Native_Element_clientTop_Getter(this).round();
1405 1413
1406 @DomName('Element.clientWidth') 1414 @DomName('Element.clientWidth')
1407 @DocsEditable() 1415 @DocsEditable()
1408 num get clientWidth => _blink.Native_Element_clientWidth_Getter(this); 1416 num get clientWidth => _blink.Native_Element_clientWidth_Getter(this).round();
1409 1417
1410 @DomName('Element.scrollHeight') 1418 @DomName('Element.scrollHeight')
1411 @DocsEditable() 1419 @DocsEditable()
1412 num get scrollHeight => _blink.Native_Element_scrollHeight_Getter(this); 1420 num get scrollHeight => _blink.Native_Element_scrollHeight_Getter(this).round( );
1413 1421
1414 @DomName('Element.scrollLeft') 1422 @DomName('Element.scrollLeft')
1415 @DocsEditable() 1423 @DocsEditable()
1416 num get scrollLeft => _blink.Native_Element_scrollLeft_Getter(this); 1424 num get scrollLeft => _blink.Native_Element_scrollLeft_Getter(this).round();
1417 1425
1418 @DomName('Element.scrollLeft') 1426 @DomName('Element.scrollLeft')
1419 @DocsEditable() 1427 @DocsEditable()
1420 void set scrollLeft(num value) => _blink.Native_Element_scrollLeft_Setter(this , value); 1428 void set scrollLeft(num value) => _blink.Native_Element_scrollLeft_Setter(this , value.round());
1421 1429
1422 @DomName('Element.scrollTop') 1430 @DomName('Element.scrollTop')
1423 @DocsEditable() 1431 @DocsEditable()
1424 num get scrollTop => _blink.Native_Element_scrollTop_Getter(this); 1432 num get scrollTop => _blink.Native_Element_scrollTop_Getter(this).round();
1425 1433
1426 @DomName('Element.scrollTop') 1434 @DomName('Element.scrollTop')
1427 @DocsEditable() 1435 @DocsEditable()
1428 void set scrollTop(num value) => _blink.Native_Element_scrollTop_Setter(this, value); 1436 void set scrollTop(num value) => _blink.Native_Element_scrollTop_Setter(this, value.round());
1429 1437
1430 @DomName('Element.scrollWidth') 1438 @DomName('Element.scrollWidth')
1431 @DocsEditable() 1439 @DocsEditable()
1432 num get scrollWidth => _blink.Native_Element_scrollWidth_Getter(this); 1440 num get scrollWidth => _blink.Native_Element_scrollWidth_Getter(this).round();
1433 $endif 1441 $endif
1434 1442
1435 $!MEMBERS 1443 $!MEMBERS
1436 } 1444 }
1437 1445
1438 1446
1439 class _ElementFactoryProvider { 1447 class _ElementFactoryProvider {
1440 1448
1441 @DomName('Document.createElement') 1449 @DomName('Document.createElement')
1442 $if DART2JS 1450 $if DART2JS
(...skipping 27 matching lines...) Expand all
1470 const ScrollAlignment._internal(this._value); 1478 const ScrollAlignment._internal(this._value);
1471 toString() => 'ScrollAlignment.$_value'; 1479 toString() => 'ScrollAlignment.$_value';
1472 1480
1473 /// Attempt to align the element to the top of the scrollable area. 1481 /// Attempt to align the element to the top of the scrollable area.
1474 static const TOP = const ScrollAlignment._internal('TOP'); 1482 static const TOP = const ScrollAlignment._internal('TOP');
1475 /// Attempt to center the element in the scrollable area. 1483 /// Attempt to center the element in the scrollable area.
1476 static const CENTER = const ScrollAlignment._internal('CENTER'); 1484 static const CENTER = const ScrollAlignment._internal('CENTER');
1477 /// Attempt to align the element to the bottom of the scrollable area. 1485 /// Attempt to align the element to the bottom of the scrollable area.
1478 static const BOTTOM = const ScrollAlignment._internal('BOTTOM'); 1486 static const BOTTOM = const ScrollAlignment._internal('BOTTOM');
1479 } 1487 }
OLDNEW
« no previous file with comments | « tests/co19/co19-dartium.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698