Go to
Result:
68/100
 

The score equals 100 minus the sum of the costs of failures (see the help page). Here is the repartition of costs per failure severity:

Severity Number Total cost
critical 1 31pt
low 1 1pt
Page Size:
17.8KB
document: 4.5KB - images: 13.3KB
Network:
12 requests
document: 2 - images: 10

Check out W3C's training courses for mobile!

Help on the checker is available.

Where to start...

1 critical error(s) detected!
These errors typically prevent the rendering of at least part of the page on mobile devices. Critical errors should be addressed first. Here is the list:

Follow the links above for a detailed description of each message and suggestions to fix the underlying problem.

Detailed report

  1. Markup

    The quality of the markup sent to mobile browsers will impact the reliability and smoothness of the rendering of the page. Markup validity is the first step to delivering content that can be parsed and rendered reliably by browsers. The recommended markup format for mobile content is XHTML Basic 1.1. But beyond validity, various tags and attributes have a specific impact in the mobile world. For instance, CSS style sheets should be used to control the layout of the page instead of presentational tags (e.g. center, big, or font) and images sizes should be defined in the markup to avoid reflows.

    • When the width and height attributes are not specified on an image, browsers need to reflow the page when the image has finished loading, which may disrupt the user experience.
      Add width and height attributes matching the actual dimensions of the image.
      Triggered by the resource under test:
      … <img alt="" src="http://im.banner.t-online.de/adserv/3.0/784.1/0/0/2/ADTECH;grp=0;alias=Telefonbuch_mobil_Startseite_mobileAd_class2;cookie=no;uid=no;misc=1259086772-c596c9957288a6f9945f6365113c8210"/>
      Related best practice:
      [IMAGES_SPECIFY_SIZE] Specify the size of images in markup, if they have an intrinsic size.
  2. Images/Objects

    Images and/or image objects must be delivered in an appropriate format and dimensions so that they can be retrieved and rendered by most mobile browsers. mobileOK requires that all images and rendered objects be either GIF or JPEG images.

↑ Top

  1. Structure of the page

    Markup validity does not ensure that tags are used appropriately. For instance, given the lack of support for nested tables in mobile browsers and the small screen sizes, using tables for layout will not work on mobile devices. The same goes with the use of applets, frames, pop-ups, and so on. The size of the page is also a very important aspect to keep in mind when designing mobile-friendly pages.

    1. Page weight

      The size of the page includes the page itself, the external style sheet(s), and the embedded images and objects. mobileOK requires the total size of the page to be under 20 KB, and the markup itself to be under 10 KB to ensure that the page can be retrieved and rendered by a mobile device in a reasonable amount of time.

      • Loading the page requires a mobile browser to make more than 10 separate HTTP requests, which on some mobile networks can induce a delay of 10s or more before the page is shown to the user.
        Try to reduce the number of included resources (images and style sheets). For instance, style sheets can be merged together instead of being split across several files.
        Triggered by the resource under test.
        Related best practice:
        [EXTERNAL_RESOURCES] Keep the number of externally linked resources to a minimum.

↑ Top