Tagged Questions
1
vote
0answers
67 views
Extent of anonymous table cell: Is Gecko or Webkit right?
Consider the following HTML markup:
<ul>
<li>Short</li>
<li>LOOOOOOOOOOOOOOOOOOONG</li>
</ul>
<table>
<tr>
...
2
votes
1answer
134 views
Finding out where a browser would insert page breaks when printing
I'm trying to figure out where a browser, specifically firefox or chrome, would insert page breaks when printing or print previewing an HTML document. For now I do not want to avoid the breaks, nor do ...
1
vote
1answer
80 views
How to use Gecko Mouse gesture events?
i'm developing a webGL Desktop app, and i'd like to provide a multi-touch interface.
It seems that the only solution concerning desktops is https://developer.mozilla.org/En/DOM/Mouse_gesture_events , ...
3
votes
1answer
601 views
Add listener to DOM element HTML update. Gecko, C#.Net, Java
I'm looking at the following site: www.example.com
I'm navigating to the site with a GeckoWebBrowser object and taking a snapshot of the HTML of the object every second. Then I navigate the DOM to ...
8
votes
2answers
134 views
How do you programmatically determine to which events an HTML object can listen for?
I've been looking over the docs at developer.mozilla.org and the Apple dev docs but I'm not able to find documentation that explains whether or not you can programatically determine if a specific HTML ...
1
vote
0answers
136 views
Is Blob read-only (for example in Firefox 6)?
Tried to add custom property (name) onto a Blob object, but got no result. As if Blob was read-only. Is it?
UPDATE:
// file variable populated somewhere here...
var blob = file.mozSlice(0, 256);
...
1
vote
1answer
277 views
execCommand not working for xml file
I am using execCommand command to 'Hilite' selected text on the page which is rendered with gecko engine/gtkmozembed.
if ( !document.execCommand("HiliteColor", false, colour) ) {
...
0
votes
2answers
3k views
highlight the text of the DOM range element,
I am able to highlight the text on the HTML page(rendered through gtkmozembed), which is selected, like below.
var range, sel;
if (window.getSelection) {
sel = window.getSelection();
...
2
votes
3answers
737 views
Creating a document from a string in Gecko
I have a string such as
<html><body><div id="message">Hello World!</div></body></html>
and I would like to get the content of the #message element without parsing ...