Bug 1175913 - (Part 2) Remove test expecting recreation on click listener change r=tbsaunde

This commit is contained in:
Lorien Hu 2015-07-31 11:24:42 -04:00
Родитель 8b671e5993
Коммит 91c3518f47
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -88,11 +88,6 @@
this.__proto__ = new removeAttr(aID, "role");
}
function changeOnclick(aID)
{
this.__proto__ = new changeAttr(aID, "onclick", "alert(3);");
}
function changeHref(aID)
{
this.__proto__ = new changeAttr(aID, "href", "www");
@ -124,9 +119,6 @@
// recreate an accessible by role change
gQueue.push(new changeRole("div1"));
// recreate an accessible by onclick change
gQueue.push(new changeOnclick("div2"));
// recreate an accessible by href change
gQueue.push(new changeHref("anchor"));
@ -155,7 +147,6 @@
<span id="span">span</span>
<div id="div1">div</div>
<div id="div2">div</div>
<a id="anchor">anchor</a>
<div id="div3" role="listbox">list</div>