Backed out changeset ff56abc1768b (bug 1255925)

This commit is contained in:
Carsten "Tomcat" Book 2016-04-14 16:19:41 +02:00
Родитель 32c25ca2da
Коммит 56fa69434b
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -520,7 +520,7 @@ function testGetterSetterObject() {
is(propNonEnums[0].querySelector(".name").getAttribute("value"), "get",
"Should have the right property name for 'get'.");
is(propNonEnums[0].querySelector(".value").getAttribute("value"),
"get prop()",
"test/myVar.prop()",
"Should have the right property value for 'get'.");
ok(propNonEnums[0].querySelector(".value").className.includes("token-other"),
"Should have the right token class for 'get'.");
@ -528,7 +528,7 @@ function testGetterSetterObject() {
is(propNonEnums[1].querySelector(".name").getAttribute("value"), "set",
"Should have the right property name for 'set'.");
is(propNonEnums[1].querySelector(".value").getAttribute("value"),
"set prop(val)",
"test/myVar.prop(val)",
"Should have the right property value for 'set'.");
ok(propNonEnums[1].querySelector(".value").className.includes("token-other"),
"Should have the right token class for 'set'.");