blob: ee5cf8f043a4f3a3f3a6f1f5c75d42ceb941919f [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 To pass, this test should not crash
*/
import "dart:html";
import "../../testcommon.dart";
main() {
var o = new Text('');
try {
o.data = null;
o.splitText(1);
} catch (e) {}
}