Revision 8de72ea1dd06f888b17ae3e4a479ae0ee27957e5 authored by moz-wptsync-bot on 16 March 2018, 17:19:41 UTC, committed by moz-wptsync-bot on 16 March 2018, 17:19:41 UTC
We flushed the style of the original doc, but not layout, and thus the iframe
resize wasn't noticed, and the style flush on the child presShell wasn't
sufficient.

Do a style flush on the child document instead, so that it flushes layout on the
parent document too if needed.
bugzilla-url: https://bugzilla.mozilla.org/show_bug.cgi?id=1443492
gecko-commit: 9cbafe1855ccac5fd2f0c2e549e830a66a72f84f
gecko-integration-branch: mozilla-inbound
gecko-reviewers: dbaron
1 parent bb066ef
Raw File
historical.html
<!doctype html>
<title>Historical Web Audio API features</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
[
  "webkitAudioContext",
  "webkitAudioPannerNode",
  "webkitOfflineAudioContext",
].forEach(name => {
  test(function() {
    assert_false(name in window);
  }, name + " interface should not exist");
});
</script>
back to top