From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out.smtp-auth.no-ip.com (out.smtp-auth.no-ip.com [8.23.224.60]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 25C537913E for ; Mon, 30 Jan 2017 15:37:10 -0800 (PST) X-No-IP: carhart.net@noip-smtp X-Report-Spam-To: abuse@no-ip.com Received: from carhart.net (unknown [99.52.200.227]) (Authenticated sender: carhart.net@noip-smtp) by smtp-auth.no-ip.com (Postfix) with ESMTPA id 4C904357 for ; Mon, 30 Jan 2017 15:38:00 -0800 (PST) Received: from carhart.net (localhost [127.0.0.1]) by carhart.net (8.13.8/8.13.8) with ESMTP id v0UNbxq4001689 for ; Mon, 30 Jan 2017 15:37:59 -0800 Received: from localhost (kevin@localhost) by carhart.net (8.13.8/8.13.8/Submit) with ESMTP id v0UNbxjP001686 for ; Mon, 30 Jan 2017 15:37:59 -0800 Date: Mon, 30 Jan 2017 15:37:59 -0800 (PST) From: Kevin Carhart To: Edbrowse-dev@lists.the-brannons.com In-Reply-To: Message-ID: References: <20170030060040.eklhad@comcast.net> User-Agent: Alpine 2.03 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: [Edbrowse-dev] Churning timers / I'd like to submit 3 things today X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.23 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Jan 2017 23:37:10 -0000 Sorry, I wrote sloppy and left something off of the item about Option: > Other things bubbling up that I need to submit and haven't yet. These four > are four reasons why nasa.gov isn't working, maybe among other problems too. > > - document.querySelectorAll is going to come up. It's like the selections > made by getElementsByTagName, etc, except that it uses a language within a > language, for selection by CSS. I suggest maybe plugging in outside code to > take care of it. I predict we are going to want to have a discussion about > what to do about this thing. > - domLink TAGACT_META so that metas are part of document.head.childNodes and > JS can use their contents > - TidyDropEmptyElems no and TidyDropEmptyParas no in html-tidy.c > - I think there needs to be an Option.prototype block along with our sets of > element types in startwindow. It's asking for the attribute-related methods, > like Option.getAttribute To be specific, deep in the bowels of nasa.gov it wants to say this: var testEl = document.createElement('div'); testEl.innerHTML = ""; return testEl.childNodes[0].childNodes[0].getAttribute('selected') === 'selected';