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

Unified Diff: tests/html/document_test.dart

Issue 1668633004: Update status for Firefox roll to version 44. Additional chrome status update. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | tests/html/html.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/document_test.dart
diff --git a/tests/html/document_test.dart b/tests/html/document_test.dart
index 7e69c1f4b705f0c98cd7e5ffe2b27f31f8a243d8..2ed520f756803cb05ea5e9eecd39b33580d86d23 100644
--- a/tests/html/document_test.dart
+++ b/tests/html/document_test.dart
@@ -23,26 +23,6 @@ main() {
expect(new Element.tag('bad_name'), isUnknownElement);
});
- group('supports_cssCanvasContext', () {
- test('supports_cssCanvasContext', () {
- expect(HtmlDocument.supportsCssCanvasContext, true);
- });
- });
-
- group('getCssCanvasContext', () {
- test('getCssCanvasContext 2d', () {
- var expectation = HtmlDocument.supportsCssCanvasContext ?
- returnsNormally : throws;
-
- expect(() {
- var context = document.getCssCanvasContext('2d', 'testContext', 10, 20);
- expect(context is CanvasRenderingContext2D, true);
- expect(context.canvas.width, 10);
- expect(context.canvas.height, 20);
- }, expectation);
- });
- });
-
group('document', () {
inscrutable = (x) => x;
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | tests/html/html.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698