Coder Social home page Coder Social logo

Comments (6)

joeldenning avatar joeldenning commented on June 28, 2024 1

patching functions directly on document is something that I have seen in several codebases (not just LastPass), which has me worried. What are the reasons you prefer patching Document.prototype? Are you worried about other instances of Document besides document? Or is it more just that Document.prototype is the right place to do it?

My thoughts are that a polyfill really can't expect a browser environment to be especially cooperative, and that the code should be defensive so that it works in as many situations as possible. What do you think?

from custom-elements.

bicknellr avatar bicknellr commented on June 28, 2024

I don't think this is a bug in the polyfill or something that it should attempt to work around. IMHO, LastPass should fix their extension to get the function from the right place and put their replacement in that same place (Document.prototype).

from custom-elements.

snuggs avatar snuggs commented on June 28, 2024

It's both @joeldenning .The Document.prototype is the appropriate place to do this. Regardless if the alternative is commonplace. Also there is the notion of Document potentially being multiple. From DocumentFragment to <iframe> to HTML Imports, (Even HTML module imports) best to use the Web API Document for enhancements instead of reaching into window.document for monkey patching. Which has been a smelly side effect (pun intended) since Javascript's inception. Also not safe to assume document is what you expect it to be moving forward now that we have a Global Environment Record that is separate from window however has same global variable access as window. This is where const let class memory space are held.

I feel this is outside of the scope of webcomponents/custom-elements. I attempted to go check out LastPass' github and didn't see a project for the plugin. Unfortunate. @bicknellr knows better than me.

from custom-elements.

bicknellr avatar bicknellr commented on June 28, 2024

I had to install the extension and dig around in it to figure out where they did their patch. AFAIK, there's no real source available. :/

from custom-elements.

TimvdLippe avatar TimvdLippe commented on June 28, 2024

Closing this as a wont-fix. The polyfill is intended to implement the steps as stated in the specification. If users overwrite functions like these, not only this polyfill breaks but also other scripts can break.

from custom-elements.

usergenic avatar usergenic commented on June 28, 2024

This is my relatively simple workaround/fix https://gist.github.com/usergenic/9baf88a24dcbc77bc808339755a7d436

from custom-elements.

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.