Giter Site home page Giter Site logo

Comments (10)

tomayac avatar tomayac commented on July 29, 2024

Looking at the code (briefly-ish), it seems like setting media to "print" would work.

from loadcss.

scottjehl avatar scottjehl commented on July 29, 2024

I think this change seems fine - loadCSS can function the same way using a valid non-matching query like print, which may be what I would use. That said, a lot of sites use loadCSS (or more generally, the media toggle approach) and I'm not sure how likely it is that they'll update. In those cases, you might cause a bunch of sites to break and lose their css layout. What's a good tool for checking that?

from loadcss.

tomayac avatar tomayac commented on July 29, 2024

That ("print" working) is good news per se. 😃

Unconventional idea: what if we hardcoded Chrome’s loading algorithm to consider "only x" still load-worthy?

from loadcss.

scottjehl avatar scottjehl commented on July 29, 2024

Could I ask, what's the issue leading up to this change? I could see this saving a few requests on some sites, but is it more than that?

from loadcss.

yoavweiss avatar yoavweiss commented on July 29, 2024

Unconventional idea: what if we hardcoded Chrome’s loading algorithm to consider "only x" still load-worthy?

I doubt that would fly. I'm also not sure that loadCSS is the only user-space library doing this.

from loadcss.

scottjehl avatar scottjehl commented on July 29, 2024

I am sure it isn't. This pattern alone is pretty common, without a JS lib:

<link rel="stylesheet" media="foo" href="styles.css" onload="this.media='all'">

The drawbacks with that are now pretty far in the past, with link[onload] working more broadly.

The onload handlers might be worth searching for, since they might vary less than media usage. There are probably a bunch that set to this.media=screen onload too, though.

from loadcss.

scottjehl avatar scottjehl commented on July 29, 2024

Noted in the other thread, AMP uses a different value for this pattern, also an invalid mq. https://github.com/ampproject/amphtml/blob/878909e3fa568ff2dceea4589579b76e6b624930/src/font-stylesheet-timeout.js#L89-L92

from loadcss.

tomayac avatar tomayac commented on July 29, 2024

Noted in the other thread, AMP uses a different value for this pattern, also an invalid mq. https://github.com/ampproject/amphtml/blob/878909e3fa568ff2dceea4589579b76e6b624930/src/font-stylesheet-timeout.js#L89-L92

Tracked in ampproject/amphtml#22984.

from loadcss.

tomayac avatar tomayac commented on July 29, 2024

Could I ask, what's the issue leading up to this change? I could see this saving a few requests on some sites, but is it more than that?

This came up in the context of CSS loading strategies for dark mode (non-publicized staging link, please don’t share).

from loadcss.

emilio avatar emilio commented on July 29, 2024

@tomayac fwiw, that post contains an error in the "Finding out if dark mode is supported" section. (prefers-color-scheme) is supposed not to match if there's no preference for light or dark, so the right way to test whether it's supported is not window.matchMedia('(prefers-color-scheme)').matches but window.matchMedia('(prefers-color-scheme)').matches || window.matchMedia('(prefers-color-scheme: no-preference)').matches (or something like that). See w3c/csswg-drafts#3857 for more fun stuff related to that.

from loadcss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.