blob: c1c5d64e64f3296cb8115e46908625fa39099544 [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.
*/
/**
* @description
* This page verifies fix for bug 58247. WebKit should not crash when this
* page is rendered.
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../testcommon.dart";
main() {
document.body.setInnerHtml('''
<a </var><form><button form="f"><progress>
<keygen form="f"><a </datalist><button>
''', treeSanitizer: new NullTreeSanitizer());
var div = document.createElement('div');
div.innerHtml = 'PASS';
document.body.append(div);
}