blob: 0a8c8da20536a9b291147adc6146b7a87ebf629c [file] [log] [blame]
description('Tests the basic operation of NetworkInfo.');
var bandwidth = 10;
var metered = false;
var connection = navigator.webkitConnection;
connection.addEventListener('webkitnetworkinfochange', function() {
shouldBe("typeof connection.bandwidth", '"number"');
shouldBe("typeof connection.metered", '"boolean"');
finishJSTest();
});
internals.setNetworkInformation(document, 'webkitnetworkinfochange', bandwidth, metered);
window.jsTestIsAsync = true;