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 3667077AA6 for ; Sat, 28 Jan 2017 21:56:36 -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 E3ED844D for ; Sat, 28 Jan 2017 21:57:24 -0800 (PST) Received: from carhart.net (localhost [127.0.0.1]) by carhart.net (8.13.8/8.13.8) with ESMTP id v0T5vOV2023500 for ; Sat, 28 Jan 2017 21:57:24 -0800 Received: from localhost (kevin@localhost) by carhart.net (8.13.8/8.13.8/Submit) with ESMTP id v0T5vN6A023497 for ; Sat, 28 Jan 2017 21:57:24 -0800 Date: Sat, 28 Jan 2017 21:57:23 -0800 (PST) From: Kevin Carhart To: Edbrowse-dev@lists.the-brannons.com Message-ID: User-Agent: Alpine 2.03 (LRH 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: [Edbrowse-dev] rawstory and CSS.. a false start 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: Sun, 29 Jan 2017 05:56:36 -0000 I can get Raw Story to work by taking away the CSSStyleDeclaration prototype from the very bottom of startwindow.js. I'm not sure if this is the real cause, or just something that makes the site end early on a bug. If CSSStyleDeclaration.prototype exists and getPropertyValue is implemented, you get the seg fault some time after some CSS work, which does not mean there couldn't be something unreported happening in between: (my alert statements are shown) trying to set the style paddingRight to zero the style was set to zero trying to set the style borderRightWidth to zero the style was set to zero trying to set the style paddingLeft to zero the style was set to zero trying to set the style borderLeftWidth to zero the style was set to zero trying to set the style display to zero the style was set to zero trying to set the style width to zero the style was set to zero Segmentation fault (core dumped) If I erase the CSSStyleDeclaration prototype entirely, plain text articles on the website are available again, but the diagnostic output has this: < side effects l{c|0x7f09c662c440,div 0x0, 0x0, `~@} l{c|0x7f09c662c4c0,div 0x0, 0x0, `~@} l{a|0x7f09c6d727c0,body 0x7f09c662c4c0,div 0x0, `~@} l{a|0x7f09c662c4c0,div 0x7f09c662c440,div 0x0, `~@} l{r|0x7f09c6d727c0,body 0x7f09c662c4c0,div 0x0, `~@} TypeError: c.getPropertyValue is not a function It wants to call getPropertyValue and can't So maybe all I'm seeing is something comparable to the fact that Raw Story works if you disable js, too.