Skip to content

Instantly share code, notes, and snippets.

@dglazkov
Last active October 14, 2015 12:01
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dglazkov/3a709f3f6768b835dab1 to your computer and use it in GitHub Desktop.
Save dglazkov/3a709f3f6768b835dab1 to your computer and use it in GitHub Desktop.
Things To Try With Custom Elements
  1. Moving blur and beforeunload to run asynchronously (custom element callback timing?)
  2. Moving mutation events to custom element callback timing
  3. Running attributeChanged callbacks for attributes set by the parser and defining the order for that
  4. How to work around the compound set of attributes in HTML spec?
  5. Experiment with didFinishParsing as timing to address non-determinism.
  6. Consider adding childrenChanged callback as a way to guide the authors to never look at the children in the constructor. Merge the callbacks to avoid spamminess? Maybe just one callback per compound operation?
  7. LATER: Some option to do hack the parser (void elements, template-like elements). Some thinking needed to ensure forward compatibility.
@wilsonpage
Copy link

Where are these being tracked and who is looking at them?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment