From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (mailfrom) identity=mailfrom; client-ip=2001:558:fe21:29:69:252:207:41; helo=resqmta-ch2-09v.sys.comcast.net; envelope-from=eklhad@comcast.net; receiver= Received: from resqmta-ch2-09v.sys.comcast.net (resqmta-ch2-09v.sys.comcast.net [IPv6:2001:558:fe21:29:69:252:207:41]) by hurricane.the-brannons.com (Postfix) with ESMTPS id 3D9A577AAF for ; Tue, 27 Feb 2018 03:22:52 -0800 (PST) Received: from resomta-ch2-08v.sys.comcast.net ([69.252.207.104]) by resqmta-ch2-09v.sys.comcast.net with ESMTP id qdMTeshTAC6gMqdMaez3do; Tue, 27 Feb 2018 11:24:04 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20161114; t=1519730644; bh=mhJDewv5jTV6MgagxVazvk7S4ukFEvS/qChswOG1rQ0=; h=Received:Received:To:From:Reply-to:Subject:Date:Message-ID: Mime-Version:Content-Type; b=aYF33O0fLJxQrUlfWMaeySgDCmRxZXNgbOOkTFJpMXVcxPYNbWy+w7icb142amW+j +hKXHDc/YI9ZgY72f6qVuDRgBeFF6E9nEAnBoNdANv26yQ+pzLXbdzKeWnwwDQ13Gm SbDcNOUG2YeiCY8hxUqxJQ2QhxEDdRRAFvOoF6oAT4P93lPugIPySStwFnCa/g9uPM LTQIJnmza+VwenNhOmxAStNhQnuj386y7w8oWsA8sdhbp97WOsqHXpmEaNqP3pSqX/ Exh0dPEWPexbPGI0IdcBdzGZ7b7XOpZpUf4tA/8ovmdoBOopRk7huKoJvTsV7ZbNWD 3+dQML0z5PDoQ== Received: from unknown ([IPv6:2601:408:c300:8f09:21e:4fff:fec2:a0f1]) by resomta-ch2-08v.sys.comcast.net with SMTP id qdMZeK98TahNvqdMZeHAqy; Tue, 27 Feb 2018 11:24:03 +0000 To: Edbrowse-dev@lists.the-brannons.com From: Karl Dahlke Reply-to: Karl Dahlke References: <20180126144402.eklhad@comcast.net> User-Agent: edbrowse/3.7.2 Date: Tue, 27 Feb 2018 06:24:03 -0500 Message-ID: <20180127062403.eklhad@comcast.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=nextpart-eb-475796 Content-Transfer-Encoding: 7bit X-CMAE-Envelope: MS4wfGW0ZHLLqPwiq/Ri73LntwwTXrGP/iPb0fh9gAuShloWfF28x2yoUtE6b2dSDbu0beaj4F6yPR0Jm7EamkRZkByUMQdd7r6b24aNJPPR6/GTU8Jxy/hW 7ffVHUTKW9TPAdImG3oTI6BUdllL9cJ6J0ztRUogACHbMhHviMgjwcLp Subject: [Edbrowse-dev] css in C X-BeenThere: edbrowse-dev@lists.the-brannons.com X-Mailman-Version: 2.1.25 Precedence: list List-Id: Edbrowse Development List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2018 11:22:52 -0000 This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --nextpart-eb-475796 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable As for debugging, I try to keep those commands in the quick reference = guide under the debug section. Though they don't include the js functions in startwindow that might = help, maybe they should, maybe not, IDK, at a philosophical level it's just the edbrowse commands. So here is your list with some edits, the first few coming from the = quick reference guide. These work from edbrowse or within jdb. db3 : set debug level, 0 through 9 db>/tmp/edbrowse.out : redirect debugging output to a file jdb : javascript debugger, bye to exit demin : deminimize javascript (toggle) timers : disable javascript timers (toggle) dbcn : enable cloneNode debugging (toggle) dbev : enable event debugging (toggle) dber : enable js error debugging (toggle) dbcss : enable css debugging (toggle) ^> - the file redirect to your filesystem showscripts - list all scripts searchscripts - searches all scripts for a string aloop > error in f575d3.ontimer() You have my head in a whirl with this one. It comes from jseng-duk.c line 1790, from html.c line 2346. So it's hex for the c pointer of the timer object that was created to = run the timer, but that object goes away once the timer has fired. We would either have to make these timers not go away, whence they = would accumulate, or perhaps print more helpful information before the = timer runs. The body attribute would be helpful, the source code for the timer, but sometimes, perhaps most of the time, it isn't given source but = rather a function. setTimeout(f, 30000); Hardly anything useful we can do with that. I'll give this a little more thought. Karl Dahlke --nextpart-eb-475796--