| Index: third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerevent_on_event_handlers.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerevent_on_event_handlers.html b/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerevent_on_event_handlers.html
|
| index 268952e41c374f8366b09c1c587cbbf5d1a27734..d8cfa7a0f4c482be606e4e98f9a7900a0340a477 100644
|
| --- a/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerevent_on_event_handlers.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/pointerevents/pointerevent_on_event_handlers.html
|
| @@ -33,7 +33,7 @@
|
| test(function() {
|
| const htmlElement = document.createElement("span");
|
| const svgElement = document.createElementNS("http://www.w3.org/2000/svg", "g");
|
| - for (const location of [window, htmlElement, svgElement, document]) {
|
| + for (var location of [window, htmlElement, svgElement, document]) {
|
| assert_equals(location[on_event], null,
|
| `The default value of the property is null for a ${location.constructor.name} instance`);
|
| }
|
|
|