-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
document.all willful violation #668
Comments
@annevk Of all the outstanding web reality issues, this is one of the least appetizing. But like the others, if everyone's gonna do it and we can't kill it, we're better off trying to pin down the best precise semantics we can get away with. I remember there was a subtle but important difference between how Firefox did this vs how either or both Safari and Chrome did this. I think I remember that the Firefox way seemed like a better first step towards a cleaner semantics which is still compat with web reality. But I no longer remember the details. Anyone? @BrendanEich , I think you were the one who explained this to me, ages ago. Does this ring a bell? |
I think I also remember that the FF way, if we had been able to agree on it in time, would have allowed us to banish the weirdness in strict mode. However, we were not, and so this was a missed opportunity for a significant cleanup. Does any of this ring a bell? I think this was only discussed in side conversations, and so was probably never captured in the notes of the main mtg. |
I'm not aware of any semantic differences between browsers on this feature, but I could be wrong... My main conflict is: how would we spec this? Presumably we wouldn't have ES talk about a specific object called I think with diligence we'd be able to prevent people from doing so (e.g. people might want to use it to deprecate features in the future, and we can tell them not to do that). But it still strikes me as weird to create this more generic interface that we insist must only be used once by one client. The current structure of one obviously-ugly willful violation seems more explicit about being a one-off, to me. |
I'm not convinced we want the spec machinery for document.all's exotic behavior in ECMA262 - it'd be a fair amound of machinery and wouldn't actually be used in any normative spec text (because we certainly wouldn't define document.all in 262, right?) I'm personally ok with the current level of specification here. |
If we think it was important to document, we could do so as an standalone Ecma Technical Note |
@allenwb do you think the formalization we would add in the technical note would be beneficial beyond what is already mentioned in HTML? |
@bterlson probably a question best answered by browser implementors. Do they think that the definition provided in the HTML spec is inadequate for somebody who is trying to create an interoperatable implementation? Is so, are the inadequacies of the sort that technically could be best addressed by a TC39 document? |
There have been no implementer complaints. This is more about us being concerned that we're bad citizens by monkeypatching ToBoolean/typeof/abstract equality comparison, which is "ES's territory". |
The grossness of the spec seems commensurate with the grossness of the desired semantics. I see no problems here :) |
The other thing is that by not including it here you make it harder to reason about an implementation of the language and might miss something important. And indeed you miss opportunities such as disabling the functionality in certain contexts. |
We do have |
@ljharb that's how I'd do it, probably, but I think the current spec text in HTML is straightforward (and unlikely to be broken by spec revisions) so I'm reluctant to add this machinery. Immutable prototype objects have a use case. Crazy undefined-seeming objects don't beyond this compat hack. |
So for the Firefox history see bug 792108. Basically we used to have a special way of passing along a "lookup context" (detecting flags) when calling [[Get]]. So for example when executing Oh and the current approach shared with all other? browsers is basically a lot simpler and just needs a check in a handful of places. (ToBoolean, typeof, ?) |
FWIW, despite @bterlson being okay with HTML defining some of it, I would like TC39 to own up to the entirety of the JavaScript subsystem in browsers, including this bit. I think whenever we uplifted such warts it has led to a greater shared understanding of the computing platform we offer to the world. |
@annevk , I would like this too, but not enough to put much time into it. If you'll take the lead, be the champion, write proposals, and take them to the committee, I could probably find the time to review. @brabalan, @charguer, @totherme, @Mbodin, @sergiomaffeis, @edgemaster The key is that the formal model states invariants that are true for the whole language. Ideally, these invariants are themselves stated normatively in the spec, so any spec detail, say in Date, that violates these invariants creates a spec inconsistency, rather than invalidating the invariant. When there's no overriding issue to the contrary, we can expect the detail to be corrected to conform to the invariant, rather than the other way around. This leaves proofs that depend on those invariants intact. This is why
Fortunately for |
This is basically everything evilpie@0514f06 that is implemented differently by SpiderMonkey for undetectable objects. |
@evilpie looks mostly good but doesn't handle how to compare two undefined-like objects. |
If TC39 does anything to specify this behavior it should not be in the main body of the spec and it shouldn't use general purpose sounding language such as “undetectable object”. Much preferable would be something like “documentAllLegacyHack object” that makes it clear that the behavior exists for only one specific purpose. I would also still prefer that it note be in ECMA-262 at all, not even Annex B. I still like the idea of a separate Ecma technical report that not only describes the spec. delta but also explains why it exists and exactly how and why it violates invariants. |
@bterlson Thanks. Actually that is handled by Step 1, they still have both have an object type. And indeed in Firefox, Chrome and Edge |
In that case its the same object reference, but what if there were two of these kinds of objects in existence? |
|
@allenwb All my reasons for wanting this are served at least as well by a tech report. Altogether, I agree that the tech report is better than anywhere in the spec proper. |
@evilpie There are multiple of these but I now see that == returns false in these cases (eg. |
If we write this in a spec, I'm all for writing down that it's an unfortunate legacy decision. What are the advantages to a separate technical report vs Annex B? It's already confusing as an implementer to have things separated out in Annex B, but at least it's in the same document and it's easy to link between them; using a separate technical note would just make things harder. Does anyone on this thread think that web browsers could unship |
Depends on how big of breakage :) But I haven't checked in a few years so perhaps things have improved since we were all forced to implement this? The advantage of a TR is it doesn't cruft up 262 and ECMA owns the spec text. However the primary motivation for moving these semantics to 262 is discoverability and better spec factoring. I don't think either of these goals are achieved with a TR. I'd argue they're regressed. Personally, I think we should either have this in 262 or leave it in HTML. |
@littledan says:
Browsers are not the only EcmaScript platform. Putting it into Annex B implies that it is normative-optional. I would prefer some status weaker than that, in which case even Annex B is inappropriate. Worse, Annex B implies that it is normative-mandatory for a platform that claims to be a web browser. This is definitely too strong. We should allow this one weirdness in this one special case. But we should never require it. If any browsers want to try killing it, we should not add to their costs for that brave experiment. |
I don't think the presence or absence of things in Annex B has any impact on browsers' willingness to experiment. It is certainly not a cost. |
What does the “DocumentAll” feature encompass? For example, are |
@bterlson I am at least as happy with the language you propose. However, it does raise a more general issue. What does
actually mean? The same issue arises in trying to pin down the meaning of Annex B's normative requirements.
In both cases, I would prefer a rephrasing to the effect of "an ECMAScript host which claims to be a web browser". I'm sure this has problems as well. Ideas? |
Along the lines of the Annex B text I quote, the corresponding language would be
|
Web browsers is just an easy prose way of saying "implements the HTML specification", IMO. I think the language I propose is fully unambiguous as it points to the spec text you must be trying to implement if you want to create a ULEO and otherwise says they are disallowed (even for web browsers). I'd also be ok with a purely Annex B style language but it's not very specific because what's a web browser? |
@bterlson good. I think both this issue and Annex B should state clearly "implements the HTML specification". The alternative easy prose in each case is unclear. Clarity on this matter is crucial. For example, a frozen realm subsystem within a web browser would seem to qualify as "ECMAScript implementations that are part of a web browser" but it must not. OTOH, it does not implement (or claim to implement) the html spec, and its ECMAScript host is not a web browser. This suggests that both the Annex B language and your suggestion above are better phrasings than "ECMAScript implementations that are part of a web browser". |
(and @allenwb ) |
"A web browser's ECMAScript implementation" and "an implementation of the HTML Standard" both seem fine as prerequisite to me. Or maybe go for "a web reality ECMAScript implementation". 😊 |
"A web browser's ECMAScript implementation" is still unclear for subsystems within a browser that do implement ECMAScript but do not implement html. "an implementation of the HTML Standard" still seems fine to me. Thanks for the smiley face on "a web reality ECMAScript implementation" -- I won't take that one seriously until someone else does ;). |
I still don't believe that this should be in ECMA-262 at all, but if we reach consensus that it must then a reference to the HTML spec. along the lines that @bterlson and @erights are discussing should be all we have. We should not make any technical accommodation to theECMA-262 to accommodate this feature as any accommodations could be misused to taken as license for other hosts to do similar but different crazy things. I don't really see why we are wasting time on this. This is an HTML features involving a HTML host object and it is up to HTML to decide how to specify it. The HTML spec. explicitly calls this feature out as a deviation from ECMA-262. That's good. We can't force platforms not to deviate from ECMA-262 but we should be pleased when platforms acknowledge that they have chosen to deviate for platform specific reasons. This isn't the only deviation among platforms. Browser CSP deviates WRT |
|
@allenwb CSP is part of the language already. Hook for that landed some time ago. |
@allenwb I am conflicted about the explicit willful violation approach. As @annevk says, CSP is already accommodated and so does not need to admit any violations. Pro comment: In general, for the spec to reflect reality well enough, we should try to keep such explicit violation as small as reasonably possible, as we generally try to do. But yes, I don't see why we would need this to be zero. Con comment: To mix metaphors horribly, this escape hatch could easily become an avalanche. If it does, then tc39 loses control of real-world JavaScript. Let's revisit a good example of the potential problem: If we had the "explicit willful violation" escape hatch at the time, I think it is quite likely we would have swept this one under that rug. (Holy mixed metaphors batman!) The chaos of bizarrely different precise semantics for this misfeature would have then continued, which is still much worse than what we achieved by bringing this into tc39. On Having written down both sides as I see it, I still lean against the explicit willful violation approach when we can reasonably avoid it. For However, I don't take this as an absolute principle. I can imagine, in desperation, agreeing that other issues fall on the other side of this line. |
See: https://bugs.chromium.org/p/chromium/issues/detail?id=567998 |
The best strategy I can currently think of:
Importantly, that wouldn’t affect uses of such as |
@allenwb I think it would be great if the ECMAScript specification were something that web browsers could ship with 100% accuracy. The current specification doesn't offer an extension point for @erights I'm pretty convinced by your "con" argument. I like the idea of "the narrowest possible exemption", but mentioning |
Can anyone tell me what happened in 2017? The graph is weird |
As it says right below the graph:
|
Oh thanks... I didn't mention that |
Other than some event loop mismatch which I think we'll be able to resolve more easily, HTML (and JavaScript engines) also contain(s) the
document.all
willful violation.https://html.spec.whatwg.org/multipage/obsolete.html#dom-document-all
How much appetite is there to try to formalize this exception?
The text was updated successfully, but these errors were encountered: