blob: 38ab1452f9cf346c8ee168087c23bcf2f082beba [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 test checks that changing the 'type' attribute on an
* input element without a 'value' attribute doesn't crash.
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../../testcommon.dart";
main() {
var body = document.body;
body.setInnerHtml('''
<input type="text"/>
''', treeSanitizer: new NullTreeSanitizer());
var inputElement = document.getElementsByTagName("input")[0];
Expect.equals('text', inputElement.type);
inputElement.type = 'submit';
Expect.equals('submit', inputElement.type);
inputElement.remove();
}