Bug 1565679 [wpt PR 17812] - Make bindings aware of exposed members/partial interfaces, a=testonly

Automatic update from web-platform-tests
Change bindings generation to make Exposed annotation aware of members/partial interfaces

--

wpt-commits: b10ea3bed2ee66a3becbb7c52765b0e1ae953eb2
wpt-pr: 17812
This commit is contained in:
sreeise 2019-07-22 11:07:01 +00:00 коммит произвёл James Graham
Родитель 9b1dbd3f54
Коммит 0f4eb03658
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -9,7 +9,9 @@
client.addEventListener("readystatechange", test.step_func(function() {
if(client.readyState == 4) {
control_flag = true
assert_equals(client.responseXML, null)
if (self.GLOBAL.isWindow()) {
assert_equals(client.responseXML, null)
}
assert_equals(client.responseText, "")
assert_equals(client.status, 0)
assert_equals(client.statusText, "")