Open GoogleCodeExporter opened 9 years ago
I found a way to fix this bug/unimplemented feature. Until I release a new
version try using:
WebKit.DOM.NodeList.Create(DirectCast(curElement.GetWebKitObject(),
WebKit.Interop.IDOMNode).getElementsByTagName("option")).<whatevermethodorproper
ty>
Original comment by tsumalis96@gmail.com
on 17 Mar 2012 at 12:11
Hi tsumali,
I get this error:
'WebKit.DOM.NodeList.Friend Shared Function Create(NodeList As
WebKit.Interop.IDOMNodeList) As WebKit.DOM.NodeList' is not accessible in this
context because it is 'Friend'.
Is there something that I miss?
Original comment by dothebe...@gmail.com
on 17 Mar 2012 at 9:16
In C# this is called "internal", so open OpenWebKitSharp.sln, go to
WebKitDOMCoreClasses and change any internal word to public e.g. internal class
NodeList to public class NodeList and internal static NodeList Create(...) to
public static NodeList Create(..)
Original comment by tsumalis96@gmail.com
on 18 Mar 2012 at 6:43
Hi tsumali,
I have changed all the "internal", "protected", and "private" to "public"
But it still has the exact same errors.
I also cannot find the word 'Friend' mentioned in WebKitDOMCoreClasses
Please help
Original comment by dothebe...@gmail.com
on 20 Mar 2012 at 10:17
Friend is Internal in C#. Also, try replacing Internal and Private with Publid
inside WebKitDOMHTMLClasses
Original comment by tsumalis96@gmail.com
on 21 Mar 2012 at 3:03
Original issue reported on code.google.com by
dothebe...@gmail.com
on 14 Mar 2012 at 11:04