Skip to content

0.7.0

Compare
Choose a tag to compare
@cburgmer cburgmer released this 12 Mar 21:41
· 142 commits to master since this release

Features

  • Initial support for Chrome.

  • A new desc option is available to describe the test case, e.g.

    csscritic.add({url: 'my_page.html', desc: 'Page in simple layout'})

  • A new .component() method allows grouping test cases, e.g.

    csscritic
        .component('My component')
        .add({url: 'my_page.html'})
        .add({url: 'another_page.html'})
    
  • Render errors are shown in the progress bar.

  • Double clicking the image of a green test will load the underlying page in an iframe. This should make debugging simpler.

  • Methods can be chained to simplify setup.

  • The code is now available via CDN from http://cdn.jsdelivr.net/csscritic/0.7.0/csscritic.allinone.js.

Bug fixes

  • rem sizes are now correctly applied.
  • Viewport size is now correctly calculated.
  • The progress bar is now consistently updated from left to right.