mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
506 B
HTML
24 lines
506 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<meta charset=UTF-8>
|
|
<script>"use strict";
|
|
(function(){
|
|
var req = new XMLHttpRequest();
|
|
req.open('GET', '?' + Date.now());
|
|
req.responseType = 'moz-blob';
|
|
var b = null;
|
|
req.onprogress = function(e) {
|
|
b = req.response;
|
|
};
|
|
req.onreadystatechange = function(e) {
|
|
if (req.readyState == 3) {
|
|
req.abort();
|
|
}
|
|
if (req.readyState == 4) {
|
|
document.documentElement.removeAttribute('class');
|
|
}
|
|
};
|
|
req.send();
|
|
})();
|
|
</script>
|