edbrowse-dev - development list for edbrowse
 help / color / mirror / Atom feed
* [Edbrowse-dev] css parser
@ 2018-02-13 18:41 Karl Dahlke
  2018-02-13 18:59 ` Adam Thompson
  2018-02-14  4:54 ` Kevin Carhart
  0 siblings, 2 replies; 4+ messages in thread
From: Karl Dahlke @ 2018-02-13 18:41 UTC (permalink / raw)
  To: Edbrowse-dev

[-- Attachment #1: Type: text/plain, Size: 1073 bytes --]

Earlier posts have discussed the possibility, and the advantages, of writing our own css parser and querySelectorAll.
If we are content with handling the high runner cases, and maybe not every corner case, it might not be as hard as first appears.
(We don't handle the unusual cases now anyways.)
css selector syntax is described here.

https://www.w3.org/TR/CSS21/selector.html#grouping

There's a lot going on, but it's straightforward.
An ideal css compiler would produce a 4 dimensional structure.
I have implemented such, and it seems to work on the modest files I've tried.
(I have yet to try the monster css file from stackoverflow.)
Have a look at the comments in startwindow.js line 2105.
If you want to play with it, browse any file with at least one css file,
and in jdb,

v = mw0.cssPieces(mw0.uncomment(document.links[0].data));

Once this is shaken out, cssGather would call this instead of the third party css parser.
Then we would write our own querySelectorAll, then invoke that from within cssApply.
That's the roadmap.

Karl Dahlke

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-02-14  7:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-13 18:41 [Edbrowse-dev] css parser Karl Dahlke
2018-02-13 18:59 ` Adam Thompson
2018-02-14  4:54 ` Kevin Carhart
2018-02-14  7:59   ` Karl Dahlke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).