blob: 955ad50d05e811bbb1ff7de6d0958f83b8d6e61a [file] [log] [blame]
/*
* Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion
* @description
* @needsreview dart issue #21370
*/
import "dart:html";
import "../../../testharness.dart";
void onload (e) {
window.history.replaceState(null, null, "?foo");
Expect.equals("?foo", window.location.search);
}
void main() {
window.onLoad.listen(onload);
}