| 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 31c2d5e14d1d39161fec8a2bfc1b0df2f60861c4..ce3f426e03c1642b009604ee1acff649c8755a49 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -28430,7 +28430,7 @@ class _ClientRect extends NativeFieldWrapperClass2 implements Rectangle {
|
| /**
|
| * Tests whether `this` entirely contains [another].
|
| */
|
| - bool contains(Rectangle<num> another) {
|
| + bool containsRectangle(Rectangle<num> another) {
|
| return left <= another.left &&
|
| left + width >= another.left + another.width &&
|
| top <= another.top &&
|
|
|