Add style check, test, and code fixes for an else brace check.

This commit is contained in:
Travis Dean 2016-07-04 17:05:20 -04:00
parent 80cb0cf821
commit 6642358217
9 changed files with 26 additions and 20 deletions

View file

@ -133,9 +133,8 @@ impl AsyncResponseListener for HTMLMediaElementContext {
// Step 5
elem.fire_simple_event("error");
}
// => "If the media data cannot be fetched at all..."
else {
} else {
// => "If the media data cannot be fetched at all..."
elem.queue_dedicated_media_source_failure_steps();
}