Skip to content

Commit

Permalink
HTML: align XHR URL encoding expectations with the specification
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Sep 21, 2023
1 parent 2568770 commit 2cd449b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ onload = function() {
var xhr = new XMLHttpRequest();
xhr.open('GET', input_url_html);
xhr.onload = this.step_func_done(function() {
assert_equals(xhr.response, expected_utf8);
assert_equals(xhr.response, expected_current);
});
xhr.send();
}, 'XMLHttpRequest#open()');
Expand Down

0 comments on commit 2cd449b

Please sign in to comment.