Displaying 20 results from an estimated 22 matches for "htmlelement".
2006 Nov 27
0
Konqueror Reference Error HTMLFormElement
..."ReferenceError: Can''t find variable:
HTMLFormElement" ( Prototype 1.5.0_rc1 ). So I had a closer look in the
prototype.js file and recognized that there is a special function to
create needed elements for Konquereror and Safari.
The intersting line is in line 1298:
if (!window.HTMLElement &&
/Konqueror|Safari|KHTML/.test(navigator.userAgent)) {
This checks, weather HTMLElement is defined. For some reason meanwhile
the Konqueror and Safari support HTMLElement but the Konqueror still
has problems with the rest of the elements needed to extend.
If you change the line to
if (...
2005 Sep 27
8
prototype.js
...his (using the periodicalUpdater object).
now the component works fine using firefox or opera, but NOT with IE.
the problem is the following line of code:
receiver.innerHTML = response;
where receiver is of type: ''HTMLTableSectionElement'' (inheriting the
innerHTML attribute from HTMLElement, which is a plain string) and
response is of type string. the funny thing is: IE can read this
attribute, but it cannot set it!!!! We were wondering if you ever used
the periodicalUpdater and whether you experienced similar problems for we
don''t know what we can still do, as it is vital f...
2006 Nov 28
11
Extending Element with getTop, getWidth, getLeft problem
Hi,
I need to extend the Element object with getTop, getWidth, getLeft .
I wrote something like this in an js file and loaded it after the
prototype.js .
----------------------------------------------------
Object.extend(Element, {
getWidth: function(element) {
element = $(element);
return element.offsetWidth;
},
getTop: function(element) {
element = $(element);
var curtop
2007 Sep 28
0
Wine release 0.9.46
...(3):
msvcrt: Implement _wsearchenv.
msvcrt: Implement _wspawnv{, e, p, pe}.
kernel32: Check for NULL output buffer in FormatMessage{A, W}.
Hwang YunSong(???) (2):
mshtml: Updated Korean resource.
wordpad: Updated Korean resource.
Jacek Caban (31):
mshtml: Store HTMLElement struct instead of pointer in HTMLAnchorElement.
mshtml: Store HTMLElement struct instead of pointer in HTMLBodyElement.
mshtml: Added get_body test.
mshtml: Store HTMLElement struct instead of pointer in HTMLInputElement.
mshtml: Store HTMLElement struct instead of pointer i...
2018 Feb 16
0
Wine release 3.2
...ways set valid IEventTarget vtbl.
mshtml/tests: Run textarea tests in both quirks and IE9 compat mode.
mshtml: Added IE9+ mode support to HTMLFormElement::elements property.
mshtml: Fixed error handling in IHTMLFormElement::item in IE9+ mode.
mshtml: Fixed error handling in IHTMLElementCollection::item in IE9+ mode.
mshtml/tests: Run form element tests in both quirks and IE9 compat mode.
jscript: Improve interp_local debug traces.
mshtml: Store Gecko element both as nsIDOMElement and nsIDOMHTMLElement in HTMLElement.
mshtml: Pass element as nsIDOMElement to...
2010 Feb 02
0
handling multitrack Ogg
...DOMString role;
> readonly attribute DOMString lang;
> attribute boolean enabled;
> ...
> };
> interface MediaTracks {
> readonly attribute unsigned long length;
> getter MediaTrack item(in unsigned long index);
> ...
> };
> interface HTMLMediaElement : HTMLElement {
> ...
> readonly attribute MediaTracks tracks;
> ...
> };
>
> Which could be used for something like this:
>
> if (video.tracks[1].role == "caption") video.tracks[1].enbled = true;
> if (video.tracks[1].lang == "fr") video.tracks[1].enble...
2017 Apr 28
0
Wine release 2.7
...class declaration.
mshtml.idl: Added HTMLSelectElement coclass declaration.
mshtml.idl: Added HTMLInputElement coclass declaration.
mshtml.idl: Added HTMLTextAreaElement coclass declaration.
mshtml.idl: Added HTMLButtonElement coclass declaration.
mshtml.idl: Added HTMLHtmlElement coclass declaration.
mshtml.idl: Added HTMLHeadElement coclass declaration.
mshtml.idl: Added HTMLTitleElement coclass declaration.
mshtml.idl: Added HTMLMetaElement coclass declaration.
mshtml.idl: Added HTMLWindow2 coclass declaration.
mshtml.idl: Added HTMLEmbed coc...
2010 Feb 02
9
handling multitrack Ogg
...tribute DOMString type;
readonly attribute DOMString role;
readonly attribute DOMString lang;
attribute boolean enabled;
...
};
interface MediaTracks {
readonly attribute unsigned long length;
getter MediaTrack item(in unsigned long index);
...
};
interface HTMLMediaElement : HTMLElement {
...
readonly attribute MediaTracks tracks;
...
};
Which could be used for something like this:
if (video.tracks[1].role == "caption") video.tracks[1].enbled = true;
if (video.tracks[1].lang == "fr") video.tracks[1].enbled = true;
As you can see, there is tra...
2010 Feb 02
9
handling multitrack Ogg
...tribute DOMString type;
readonly attribute DOMString role;
readonly attribute DOMString lang;
attribute boolean enabled;
...
};
interface MediaTracks {
readonly attribute unsigned long length;
getter MediaTrack item(in unsigned long index);
...
};
interface HTMLMediaElement : HTMLElement {
...
readonly attribute MediaTracks tracks;
...
};
Which could be used for something like this:
if (video.tracks[1].role == "caption") video.tracks[1].enbled = true;
if (video.tracks[1].lang == "fr") video.tracks[1].enbled = true;
As you can see, there is tra...
2010 Feb 02
9
handling multitrack Ogg
...tribute DOMString type;
readonly attribute DOMString role;
readonly attribute DOMString lang;
attribute boolean enabled;
...
};
interface MediaTracks {
readonly attribute unsigned long length;
getter MediaTrack item(in unsigned long index);
...
};
interface HTMLMediaElement : HTMLElement {
...
readonly attribute MediaTracks tracks;
...
};
Which could be used for something like this:
if (video.tracks[1].role == "caption") video.tracks[1].enbled = true;
if (video.tracks[1].lang == "fr") video.tracks[1].enbled = true;
As you can see, there is tra...
2007 Dec 14
0
Wine release 0.9.51
...wininet: Make FtpGetCurrentDirectoryA pass all todo_wine tests.
gdi32: GetCharABCWidthsI does not require a scalable font.
usp10: Add some tests for ScriptShape/Place and make them pass.
usp10: Do glyph translation for truetype fonts only.
Jacek Caban (23):
mshtml: Added IHTMLElement2::get_dir implementation.
mshtml: Make IConnectionPointContainer more flexible.
mshtml: Initialize HTMLElement in the beginning of constructors.
mshtml: Added IConnectionPointContainer iface to all HTMLElement objects.
mshtml: Move HTMLTextContainerEvents connection point to...
2012 Sep 14
0
Wine release 1.5.13
...tation.
mshtml: Added IHTMLIFrameElement3 stub implementation.
mshtml: Properly expose frame and iframe element's windows to scripts.
mshtml: Added IHTMLWindow2::onhelp property implementation.
mshtml: Added IHTMLStyle::put_pixelWidth implementation.
mshtml: Added IHTMLElement::contains implementation.
jscript: Fixed empty cases in the end of switch statement.
wininet: Set last error for invalid URL argument.
vbscript: Fixed uninitialized opcode param in forto statement bytecode.
vbscript: Renamed vbscode_t's variables to not suggest that they...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...o') > -1 &&
+ navigator.userAgent.indexOf('KHTML') === -1,
MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
},
BrowserFeatures: {
XPath: !!document.evaluate,
+ SelectorsAPI: !!document.querySelector,
ElementExtensions: !!window.HTMLElement,
SpecificElementExtensions:
- document.createElement('div').__proto__ &&
- document.createElement('div').__proto__ !==
- document.createElement('form').__proto__
+ document.createElement('div')['__proto__'] &&
+...
2007 Oct 12
0
Wine release 0.9.47
...ded get_tagName implementation.
mshtml: Pass the IDispatch interface of the element right-clicked on to IDocHostUIHandler_ShowContextMenu if applicable instead of always the document's one.
mshtml: Pass HTMLDOMNode pointer to its destructor.
mshtml: Pass HTMLDOMNode pointer to HTMLElement's destructor.
mshtml: Use vtbl for node destructors.
mshtml: Move nodes' QueryInterface implementation to vtbl.
mshtml: Move common code to separated function.
mshtml: Return IHTMLElementCollection instead of IDispatch from HTMLElementCollection_Create.
mshtml:...
2012 Jul 17
0
Wine release 1.5.9
...g callback.
mshtml: Use per-inner window task_magic for binding.
mshtml: Don't store outer window in nsChannelBSC.
mshtml: Use proper task_magic in async_open.
mshtml: Get rid of no longer needed support for new window navigation in before_async_open.
mshtml: Added HTMLElement::onkeypress implementation.
mshtml: Added HTMLInputElement::onchange implementation.
mshtml: Added IHTMLInputElement::maxLength implementation.
mshtml: Added IHTMLAnchorElement::name implementation.
mshtml: Moved invoking DISPID_VALUE to separated function.
mshtml: Add...
2008 Apr 09
13
submitting an ajax form via javascript not rendering
for some reason the controller is parsing everything fine, but the
return is a page instead of code execution. I have other ajax forms no
listed that are also running fine on this same page.
there are supposed to be 3 ajax events:
onblur event that calls a function to submit - doesn''t work.
There is a submit button at the end of the form - works
there is a delete image that removed the
2012 Apr 13
0
Wine release 1.5.2
...nt string.
mshtml: Added IHTMLFormElement::submit implementation.
jscript: Replace only the first match for non-regexp pattern in String.replace.
mshtml: Added better IHTMLWindow2::get_opener stub.
mshtml: Added IHTMLDocument2::onkeypress implementation.
mshtml: Added IHTMLElement2::blur implementation.
mshtml: Return self as a parent of global top window.
mshtml: Improved helper for returning color as VARIANT in HTMLBodyElement implementation.
mshtml: Use return_nsstr helper in IHTMLBodyElement::get_background implementation.
mshtml: Use return_nsstr...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply
to this email, as some of the replaced lines are too long, so git
won't let me send the email. However, there is nothing wrong with
that patch, and it should be applied in the sequence listed below.
Note also that I assume this will be tested on a clean f11 install, rather
than an upgrade of an existing ovirt server
2012 Mar 16
0
Wine release 1.5.0
...l: Get rid of PRBool from nsembed.c and nsservice.c.
mshtml: Get rid of remaining PRBool usages.
msxml3: Avoid BAD_CAST in schemasInit.
ieframe: Use Custom IEnumOLEVERBVtbl implementation in IOleObject::EnumVerbs.
ieframe: Added EnumVerbs tests.
mshtml: Store filter in HTMLElement object.
mshtml: Added IHTMLCurrentStyle2::get_filter implementation.
mshtml: Added IHTMLCurrentStyle2::get_filter tests.
mshtml: Don't overwrite type of result if property type is VT_VARIANT.
Jaka Kranjc (1):
po: Preserve the previous msgid on change as a hint to transl...
2007 Sep 14
0
Wine release 0.9.45
...entation.
mshtml: Added IHTMLTxtRange::move("word") implementation.
mshtml: Added IHTMLTxtRange::put_text tests.
mshtml.idl: Added IHTMLAnchorElement.
mshtml: Added IHTMLAnchorElement stub implementation.
mshtml: Store HTMLDOMNode struct instead of pointer in HTMLElement object.
James Hawkins (2):
cabinet: Don't extract a file if DoExtract is FALSE.
cabinet: Add initial tests for FDI.
Jason Edmeades (8):
comctl32: toolbar: Implemented SetRows.
cmd.exe: Enhance FOR support.
cmd.exe: Expand for variables at last with tilda modifica...