6ae9dedc60
Changed tests either use expect/minitest or async_helper/async_minitest as a replacement. There are still a few outstanding tests that need to be migrated off of unittest.dart. Change-Id: I9231d453f61507110b5a89360dfb9e5647a5b4c7 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/135420 Reviewed-by: Sigmund Cherem <sigmund@google.com> Reviewed-by: Bob Nystrom <rnystrom@google.com> Commit-Queue: Srujan Gaddam <srujzs@google.com>
45 lines
1.2 KiB
Dart
45 lines
1.2 KiB
Dart
library CssTest;
|
|
|
|
import 'dart:html';
|
|
|
|
import 'package:expect/minitest.dart';
|
|
|
|
main() {
|
|
group('supportsPointConversions', () {
|
|
test('supported', () {
|
|
expect(Window.supportsPointConversions, true);
|
|
});
|
|
});
|
|
|
|
group('functional', () {
|
|
test('DomPoint', () {
|
|
var expectation =
|
|
Window.supportsPointConversions ? returnsNormally : throws;
|
|
expect(() {
|
|
Element element = new Element.tag('div');
|
|
element.attributes['style'] = '''
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 100px;
|
|
left: 0px;
|
|
top: 0px;
|
|
background-color: red;
|
|
-webkit-transform: translate3d(250px, 100px, 0px);
|
|
-moz-transform: translate3d(250px, 100px, 0px);
|
|
''';
|
|
document.body.append(element);
|
|
|
|
var elemRect = element.getBoundingClientRect();
|
|
|
|
checkPoint(250, 100, new Point(elemRect.left, elemRect.top));
|
|
checkPoint(310, 200, new Point(elemRect.right, elemRect.bottom));
|
|
}, expectation);
|
|
});
|
|
});
|
|
}
|
|
|
|
void checkPoint(expectedX, expectedY, Point point) {
|
|
expect(point.x.round(), equals(expectedX), reason: 'Wrong point.x');
|
|
expect(point.y.round(), equals(expectedY), reason: 'Wrong point.y');
|
|
}
|