| Index: client/html/src/WindowWrappingImplementation.dart
|
| diff --git a/client/html/src/WindowWrappingImplementation.dart b/client/html/src/WindowWrappingImplementation.dart
|
| index f5eaded722fb25b1edbfa4ec81b170c64cea2800..a4f8b9c954f10c66c1af42d722bbbc12e38daf6d 100644
|
| --- a/client/html/src/WindowWrappingImplementation.dart
|
| +++ b/client/html/src/WindowWrappingImplementation.dart
|
| @@ -833,12 +833,7 @@ class WindowWrappingImplementation extends EventTargetWrappingImplementation imp
|
| }
|
|
|
| int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, [Element element = null]) {
|
| - if (element === null) {
|
| - return _ptr.webkitRequestAnimationFrame(callback);
|
| - } else {
|
| - return _ptr.webkitRequestAnimationFrame(
|
| - callback, LevelDom.unwrap(element));
|
| - }
|
| + return _ptr.webkitRequestAnimationFrame(callback, LevelDom.unwrap(element));
|
| }
|
|
|
| void requestLayoutFrame(TimeoutHandler callback) {
|
|
|