зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
438 B
HTML
16 строки
438 B
HTML
<html class="reftest-wait">
|
|
<iframe srcdoc="<img srcset=red.png>" width="150px"></iframe>
|
|
<script>
|
|
var iframe = document.querySelector('iframe');
|
|
iframe.onload = function() {
|
|
var doc = iframe.contentDocument;
|
|
var img = doc.querySelector('img');
|
|
img.srcset = "pass.png";
|
|
iframe.width = "300px";
|
|
img.onload = function() {
|
|
document.documentElement.classList.remove('reftest-wait');
|
|
};
|
|
}
|
|
</script>
|
|
</html>
|