blob: 6f9c698eeea03428a7157bcb787583d2a2862caa [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 should trigger exceptions on HTMLTableElement
*/
import "dart:html";
import "../../../testcommon.dart";
main() {
TableElement t = document.createElement('table');
shouldThrow(() => t.insertRow(-2));
shouldThrow(() => t.insertRow(1));
shouldThrow(() => t.deleteRow(-2));
shouldThrow(() => t.deleteRow(2));
}