Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ronancremin committed Apr 22, 2015
0 parents commit 3ace1e8
Show file tree
Hide file tree
Showing 29 changed files with 508 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# webpage-size-tests
Binary file added icons/application_side_expand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/application_view_tile.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/browser_internetexplorer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/drink_empty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/dvd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/hourglass_delete.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/page_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/page_white_php.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/tag_green.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/text_align_left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added lenna.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions plain.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page
</title>
</head>
<body>
<h1>Plain HTML page</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
</body>
</html>
23 changes: 23 additions & 0 deletions plain_with_10_icons.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with 10 PNG icons
</title>
</head>
<body>
<h1>Plain HTML page with 10 PNG icons</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<img src="icons/application_side_expand.png"/>
<img src="icons/application_view_tile.png"/>
<img src="icons/browser_internetexplorer.png"/>
<img src="icons/drink_empty.png"/>
<img src="icons/dvd.png"/>
<img src="icons/hourglass_delete.png"/>
<img src="icons/page_white.png"/>
<img src="icons/page_white_php.png"/>
<img src="icons/tag_green.png"/>
<img src="icons/text_align_left.png"/>
</body>
</html>
25 changes: 25 additions & 0 deletions plain_with_10_icons_iframe.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with 10 PNG icons and iframe
</title>
</head>
<body>
<h1>Plain HTML page with 10 PNG icons and iframe</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<img src="icons/application_side_expand.png"/>
<img src="icons/application_view_tile.png"/>
<img src="icons/browser_internetexplorer.png"/>
<img src="icons/drink_empty.png"/>
<img src="icons/dvd.png"/>
<img src="icons/hourglass_delete.png"/>
<img src="icons/page_white.png"/>
<img src="icons/page_white_php.png"/>
<img src="icons/tag_green.png"/>
<img src="icons/text_align_left.png"/>
<h1>iframe below</h1>
<iframe src="plain_with_10_icons.html">Your browser does not support iframes</iframe>
</body>
</html>
47 changes: 47 additions & 0 deletions plain_with_ajax_load.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with AJAX-loaded image
</title>
<script type="text/javascript">
function loadImg() {

if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4) {
console.log('readyState 4');
if (xmlhttp.status = 200) {
var img = document.createElement('img');
img.src = window.URL.createObjectURL(this.response);
img.onload = function() {
window.URL.revokeObjectURL(this.src);
}
document.body.appendChild(img);
} else if (xmlhttp.status = 400) {
alert("Oh no, there was an error 400");
} else {
alert("Something else other than 200 or 400 returned")
}
}
}
xmlhttp.open("GET", "lenna.png", true);
xmlhttp.responseType = "blob";
xmlhttp.send();
}
document.addEventListener("DOMContentLoaded", function(event) {
loadImg();
});
</script>
</head>
<body>
<h1>Plain HTML page with AJAX-loaded image</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
</body>
</html>
15 changes: 15 additions & 0 deletions plain_with_iframe_plane.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with Iframe
</title>
</head>
<body>
<h1>Plain HTML page with Iframe</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<h1>iframe below</h1>
<iframe src="plain.html">Your browser doesn't support frames</iframe>
</body>
</html>
14 changes: 14 additions & 0 deletions plain_with_jpeg.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with JPEG image
</title>
</head>
<body>
<h1>Plain HTML page with JPEG image</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<img src="image.jpg" />
</body>
</html>
14 changes: 14 additions & 0 deletions plain_with_png.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with PNG image
</title>
</head>
<body>
<h1>Plain HTML page with PNG image</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<img src="lenna.png" />
</body>
</html>
15 changes: 15 additions & 0 deletions plain_with_sharing_addthis.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with addthis.com sharing
</title>
</head>
<body>
<h1>Plain HTML page with addthis.com sharing</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<!-- Go to www.addthis.com/dashboard to customize your tools -->
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-54dcda852a84ff9a" async="async"></script>
</body>
</html>
24 changes: 24 additions & 0 deletions plain_with_sharing_sharethis.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with sharethis.com sharing
</title>
<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "b174a820-78e4-4bc1-85df-bb616c4f5311", doNotHash: false, doNotCopy: false, hashAddressBar: false});</script>
</head>
<body>
<h1>Plain HTML page with sharethis.com sharing</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<div>
<span class='st_sharethis_large' displayText='ShareThis'></span>
<span class='st_facebook_large' displayText='Facebook'></span>
<span class='st_twitter_large' displayText='Tweet'></span>
<span class='st_linkedin_large' displayText='LinkedIn'></span>
<span class='st_pinterest_large' displayText='Pinterest'></span>
<span class='st_email_large' displayText='Email'></span>
</div>
</body>
</html>
31 changes: 31 additions & 0 deletions plainhtml_big.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain big HTML page
</title>
</head>
<body>
<h1>Plain big HTML page</h1>
<p>Bacon ipsum dolor amet pork belly ullamco non, labore pork chop kielbasa officia. Consectetur pastrami culpa ex salami dolore. Flank boudin est cow magna, landjaeger enim velit do esse aliqua tail jowl eu ball tip. Mollit tail cupim chicken esse irure. Minim jowl frankfurter porchetta sunt filet mignon, nostrud duis in. Pork loin exercitation boudin in, jerky turkey chuck kielbasa lorem voluptate in jowl. Anim corned beef ex, alcatra sint t-bone ham hock sed esse filet mignon ea do shoulder.</p>

<p>Fatback pastrami alcatra labore consequat nisi. Nisi sint nulla minim doner in est drumstick ad elit. Strip steak aute t-bone, tail sunt in sint shoulder dolor consequat esse. Ipsum lorem consequat exercitation short loin consectetur.</p>

<p>Bacon culpa fugiat dolor exercitation lorem, nulla turducken do. Pig quis chuck chicken tri-tip beef picanha landjaeger ball tip fugiat est. Salami excepteur porchetta quis short ribs exercitation, kevin lorem id nostrud pork chop labore tongue qui jowl. Exercitation pork swine corned beef shankle ullamco pig esse quis ea. Esse fatback sed beef andouille drumstick mollit pork chop quis strip steak in.</p>

<p>Salami ut porchetta do doner. Frankfurter excepteur brisket jerky. Venison ipsum quis irure dolore beef ribs ullamco aliquip meatball rump veniam. Landjaeger dolore in drumstick. Hamburger corned beef consequat pork ipsum. Occaecat ham venison, culpa aliquip salami sirloin ut laboris bacon aute kevin swine ball tip. Cillum filet mignon reprehenderit in.</p>

<p>Deserunt eiusmod jerky sunt, incididunt ea irure laboris shankle pastrami picanha veniam ham. Nulla sint commodo, tempor pancetta anim jerky chicken. Ex dolore pastrami doner chuck turducken. Beef ribs tenderloin veniam filet mignon. Mollit meatball occaecat tenderloin tail.</p>

<p>Turkey aliquip nisi, sausage filet mignon qui minim sirloin voluptate drumstick frankfurter ut ullamco. Biltong kielbasa aliquip consequat dolore ex eu duis meatball do ground round filet mignon t-bone frankfurter. Turducken ribeye ea capicola ut magna ex bresaola dolore. Pancetta t-bone short loin in consectetur, occaecat prosciutto.</p>

<p>Ball tip ea pastrami ullamco eiusmod porchetta id labore ut alcatra tongue beef ribs aliquip shoulder shankle. Nulla brisket shank qui. Salami ball tip nostrud, kielbasa in non andouille alcatra ad picanha ham velit tenderloin do. Pork chop pork belly hamburger ham fugiat. Cillum labore aute nostrud meatloaf. Cow hamburger pork loin ground round picanha ipsum ribeye meatloaf nostrud frankfurter tenderloin chuck spare ribs.</p>

<p>Aute in cow minim ground round capicola ham hock porchetta brisket pastrami pork. Ea eiusmod turkey, filet mignon meatball officia proident in. Kevin ex consectetur tenderloin. In pork loin laborum excepteur. Ut pastrami fugiat eiusmod meatball, capicola eu ut pariatur beef pork chop tri-tip cillum prosciutto. Salami sint anim filet mignon est minim excepteur, pancetta capicola frankfurter aliqua chuck. Cupidatat sed filet mignon irure commodo shankle, kielbasa dolor frankfurter nisi.</p>

<p>Beef fatback ex bacon id, qui shank aute meatball aliqua minim. T-bone esse sausage, beef ribs shankle pork loin short loin flank jowl non shank in. Ribeye shank cillum t-bone pork chop voluptate shankle meatloaf laboris consectetur eu ullamco in pork belly. Sunt swine ham hock esse enim beef t-bone ea shoulder quis capicola filet mignon sed in pork loin.</p>

<p>Do filet mignon fatback dolor laborum. Kielbasa chicken beef ribs officia ut. Strip steak id jowl laborum culpa, duis proident pork chop aute mollit do. Qui elit occaecat velit, in ut flank culpa et beef ribs in venison chicken laboris strip steak.</p>
</body>
</html>
28 changes: 28 additions & 0 deletions plainhtml_with_analytics.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with Google analytics script
</title>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-3084173-5']);
_gaq.push(['_setDomainName', 'mobiforge.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>


</head>
<body>
<h1>Plain HTML page with Google analytics script</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
</body>
</html>
14 changes: 14 additions & 0 deletions plainhtml_with_youtube.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE HTML>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>
Plain HTML page with Youtube embed
</title>
</head>
<body>
<h1>Plain HTML page with Youtube embed</h1>
<p>Bacon ipsum dolor amet lorem landjaeger corned beef in venison reprehenderit picanha ipsum alcatra shoulder strip steak chicken. Salami eiusmod ham commodo nulla, hamburger tongue sed incididunt duis ham hock sausage ullamco pork belly proident. Tempor strip steak ball tip spare ribs picanha in chicken ground round culpa rump tail pancetta pig. Laboris pariatur pig, exercitation salami do labore andouille aliqua bacon anim dolore. Mollit brisket kevin aliqua enim ut tri-tip.</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/e7xix_Q9JoY" frameborder="0" allowfullscreen></iframe>
</body>
</html>
Loading

0 comments on commit 3ace1e8

Please sign in to comment.