Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

include compound CSS selectors and those that don't mention the <svg> element #23

Open
wants to merge 7 commits into
base: gh-pages
Choose a base branch
from

Commits on Jan 10, 2015

  1. include @font-face CSS rules

    sweetleon committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    39b7850 View commit details
    Browse the repository at this point in the history
  2. make nested CSS rules match SVG elements

    for example, "html body svg text {...}" becomes just "text {...}" so that it matches once the document is just the contents of the <svg>
    sweetleon committed Jan 10, 2015
    Configuration menu
    Copy the full SHA
    917c06a View commit details
    Browse the repository at this point in the history

Commits on Jan 14, 2015

  1. handle compound CSS selectors

    e.g., `div, span {...}`
    sweetleon committed Jan 14, 2015
    Configuration menu
    Copy the full SHA
    bd7144e View commit details
    Browse the repository at this point in the history
  2. handle CSS selectors that don't include svg

    e.g., `body rect`
    sweetleon committed Jan 14, 2015
    Configuration menu
    Copy the full SHA
    fcb7e2b View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2015

  1. inlined/cached images don't trigger .onload

    checking image.complete is required for some images
    sweetleon committed Jan 15, 2015
    Configuration menu
    Copy the full SHA
    799fe49 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2015

  1. catch error when rule.selectorText confuses element.querySelectorAll

    Safari blew up on `input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button`
    sweetleon committed Jan 16, 2015
    Configuration menu
    Copy the full SHA
    97c9d6d View commit details
    Browse the repository at this point in the history
  2. image.setAttribute('href', ...) works but 'xlink:href' doesn't

    'xlink:href' seems right, but doesn't work whereas 'href' works
    
    tested on Chrome, Safari, FF and IE10
    sweetleon committed Jan 16, 2015
    Configuration menu
    Copy the full SHA
    ad358d1 View commit details
    Browse the repository at this point in the history