pshaughn

Results 41 comments of pshaughn

> > > So, I started to work on this TODO: > > ```rust > // TODO: Handle the document-tree child browsing context name property set. > ``` > >...

> > > > Let childBrowsingContexts be all document-tree child browsing contexts of window's browsing context > > I know how to get the window's browsing context (`document.browsing_context()`), but I...

> > > Now I'm confused, but that's probably due to a lot of missing domain knowledge. So my apologies if the following statements/questions make absolutely no sense. I'm just...

> > > Thank you very much for elaborating! Now I have a good idea of how to approach this. > And it turned out much simpler than I imagined...

The name of an HTMLIFrameElement is just its name content attribute, like most nameable elements. I believe the name of a browsing context, in servo, is the name field of...

I have to admit that this is a part of Servo's architecture I've only been able to work with through trial and error and asking for help. Whenever I've hit...

All these test cases involve parsing, so it's conceivable that browsers are actually doing the right thing on the insertion and the wrong thing is when they're parsing the HTML...

Why is this using a single TreeWalker and jumping currentNode, instead of making a new TreeWaker for each cell?

https://w3c.github.io/uievents/ is cited and still treats default actions as existing; there should maybe be some more explicit verbiage about how WHATWG disagrees with it.

The failing ones are: https://github.com/web-platform-tests/wpt/blob/c7df60fa0b11d94487f56d8bde44d979a6a8370e/cors/remote-origin.htm#L85 `shouldFail("" + "#")` https://github.com/web-platform-tests/wpt/blob/c7df60fa0b11d94487f56d8bde44d979a6a8370e/cors/remote-origin.htm#L83 `shouldFail("" + "/")` https://github.com/web-platform-tests/wpt/blob/c7df60fa0b11d94487f56d8bde44d979a6a8370e/cors/remote-origin.htm#L91 `shouldFail("//")` where PROTOCOL means the protocol has been uppercased.