Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Update built files (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Oct 31, 2012
1 parent a44fcdf commit dfc15c8
Show file tree
Hide file tree
Showing 12 changed files with 56 additions and 56 deletions.
2 changes: 1 addition & 1 deletion dev/feature-select.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@
{
"name": "network",
"title": "Network Info ‽",
"ring": 1,
"ring": 2,
"spec": "http://www.w3.org/TR/netinfo-api/",
"sources": [
"http://dvcs.w3.org/hg/dap/raw-file/tip/network-api/Overview.html"
Expand Down
2 changes: 1 addition & 1 deletion dev/load.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -14625,7 +14625,7 @@ App.register( "features", [
{
"name": "network",
"title": "Network Info ‽",
"ring": 1,
"ring": 2,
"spec": "http://www.w3.org/TR/netinfo-api/",
"sources": [
"http://dvcs.w3.org/hg/dap/raw-file/tip/network-api/Overview.html"
Expand Down
4 changes: 2 additions & 2 deletions dist/application.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ App.register( "features", [
{
"name": "network",
"title": "Network Info ‽",
"ring": 1,
"ring": 2,
"spec": "http://www.w3.org/TR/netinfo-api/",
"sources": [
"http://dvcs.w3.org/hg/dap/raw-file/tip/network-api/Overview.html"
Expand Down
2 changes: 1 addition & 1 deletion dist/h.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Ringmark - v1.4.0 - 10/4/2012
/*! Ringmark - v1.4.0 - 10/31/2012
* Copyright ( c ) 2012 Facebook Licensed W3C 3-clause BSD License, W3C Test Suite License */

(function( exports ) {
Expand Down
2 changes: 1 addition & 1 deletion dist/h.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/performance.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/ringmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -1820,7 +1820,7 @@ QUnit.diff = (function() {

}( this ));

/*! Ringmark - v1.4.0 - 10/4/2012
/*! Ringmark - v1.4.0 - 10/31/2012
* Copyright ( c ) 2012 Facebook Licensed W3C 3-clause BSD License, W3C Test Suite License */

(function( exports ) {
Expand Down
2 changes: 1 addition & 1 deletion dist/ringmark.min.js

Large diffs are not rendered by default.

86 changes: 43 additions & 43 deletions dist/rings.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ Hat.ring({
});
Hat.ring({
ring: 1,
features: 29,
features: 28,
test: function() {

module("ring:1");
Expand Down Expand Up @@ -2014,47 +2014,6 @@ Hat.ring({
}
});

feature("network", 1, "Network Info ‽");

window.spec = "network";


test("Network Connection", function() {
var connection = H.API( navigator, "connection", true );

assert( connection, "navigator.connection supported" );
});

test("Network Connection bandwidth", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "bandwidth" in connection, "navigator.connection.bandwidth supported" );
}
});

test("Network Connection metered", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "metered" in connection, "navigator.connection.metered supported" );
}
});

test("Network Connection onchange", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "onchange" in connection, "navigator.connection.onchange supported" );
}
});

feature("offline", 1, "Offline Mode");

window.spec = "offline";
Expand Down Expand Up @@ -2785,7 +2744,7 @@ Hat.ring({
});
Hat.ring({
ring: 2,
features: 26,
features: 27,
test: function() {

module("ring:2");
Expand Down Expand Up @@ -3834,6 +3793,47 @@ Hat.ring({
}
});

feature("network", 2, "Network Info ‽");

window.spec = "network";


test("Network Connection", function() {
var connection = H.API( navigator, "connection", true );

assert( connection, "navigator.connection supported" );
});

test("Network Connection bandwidth", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "bandwidth" in connection, "navigator.connection.bandwidth supported" );
}
});

test("Network Connection metered", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "metered" in connection, "navigator.connection.metered supported" );
}
});

test("Network Connection onchange", function() {
var connection = H.API( navigator, "connection", true );

if ( !connection ) {
assert( false, "navigator.connection not supported, skipping tests" );
} else {
assert( "onchange" in connection, "navigator.connection.onchange supported" );
}
});

feature("notifications", 2, "Notifications ‽");

window.spec = "notifications";
Expand Down
4 changes: 2 additions & 2 deletions dist/rings.min.js

Large diffs are not rendered by default.

0 comments on commit dfc15c8

Please sign in to comment.