Re: [webkit-dev] webkit-dev Digest, Vol 52, Issue 13

2009-09-10 Thread Prema Arya
Don't know how come she came to my kitchen ..its ground floor and window 
remains open... It was too young to move around also.. Fed it milk with 
hand..slowly she got used to us... 

You take care no problem. :) learning the old ones tend to forget :).
Good night ..sweet dreams...
Love
Prema 

- Original Message -
From: webkit-dev-requ...@lists.webkit.org
Sent: 10 September 2009 19:30
To: webkit-dev@lists.webkit.org
Subject: webkit-dev Digest, Vol 52, Issue 13

Send webkit-dev mailing list submissions to
webkit-dev@lists.webkit.org

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev
or, via email, send a message with subject or body 'help' to
webkit-dev-requ...@lists.webkit.org

You can reach the person managing the list at
webkit-dev-ow...@lists.webkit.org

When replying, please edit your Subject line so it is more specific
than Re: Contents of webkit-dev digest...


Today's Topics:

   1. Re: mfenced - more MathML questions (Alex Milowski)
   2. Re: Runtime setting for incomplete features (Adam Barth)
   3. Re: mfenced - more MathML questions (David Hyatt)
   4. Re: Fwd: Whitespace changes (Marc-Antoine Ruel)
   5. Re: Runtime setting for incomplete features (Darin Fisher)
   6. Re: Runtime setting for incomplete features (Eric Seidel)
   7. Re: mfenced - more MathML questions (Alex Milowski)
   8. Re: Stretchy Characters (Alex Milowski)
   9. Re: mfenced - more MathML questions (David Hyatt)
  10. Re: mfenced - more MathML questions (David Hyatt)
  11. Re: mfenced - more MathML questions (Alex Milowski)
  12. Back/forward cache for pages with unload handlers (Brady Eidson)
  13. Re: Back/forward cache for pages with unload handlers
  (Maciej Stachowiak)
  14. Re: Back/forward cache for pages with unload handlers
  (Brady Eidson)
  15. Re: Back/forward cache for pages with unload handlers
  (Maciej Stachowiak)
  16. Re: Back/forward cache for pages with unload handlers
  (Brady Eidson)


--

Message: 1
Date: Wed, 9 Sep 2009 08:16:00 -0700
From: Alex Milowski a...@milowski.org
To: webkit-dev Development webkit-dev@lists.webkit.org
Subject: Re: [webkit-dev] mfenced - more MathML questions
Message-ID:
28d56ece0909090816w7423002avbe47852a38f8f...@mail.gmail.com
Content-Type: text/plain; charset=ISO-8859-1

On Tue, Sep 8, 2009 at 4:30 PM, Alex Milowskia...@milowski.

[The entire original message is not included]
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Interact with DOM Elements using WebKit

2009-04-22 Thread Prema Arya
Hi,
Following the C# code:

view = new WebViewClass();


  view.setHostWindow(this.panel1.Handle.ToInt32());

  WebKit.tagRECT rect;
  rect.bottom = rect.top = rect.left = rect.right = 0;
  view.initWithFrame(rect, null, null);
  WebKit.WebURLRequestClass req = new WebKit.WebURLRequestClass();
  req.initWithURL(http://login.live.com;,
WebKit._WebURLRequestCachePolicy.WebURLRequestUseProtocolCachePolicy, 60);
  view.mainFrame().loadRequest(req);

  WebKit.IDOMHTMLInputElement element = (IDOMHTMLInputElement)
view.mainFrameDocument().getElementById(i0116);
  element.setValue(username);

  element = (IDOMHTMLInputElement)
view.mainFrameDocument().getElementById(i0118);
  element.setValue(password);

  element = (IDOMHTMLInputElement)
view.mainFrameDocument().getElementById(i0011);

  // This statement throws the error.
  element.click();

I am new to WebKit let me know if my approach is correct? My goal is to
browser website do some operations on it so that it would be helpful in
testing.

Thanks,
Prema Arya
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Interact with DOM Elements using WebKit

2009-04-21 Thread Prema Arya
Hi,
I was able to use webkit in my C# application on windows. I am able to load
a page using loadRequest() method. Now i want to interact with elements on
the page. I tried using getElementById() which returns the element. I was
able to enter text in text boxes and change values of button. But when I
click() the button it throws an error Access to right protected memory
bascially AccessViolationException().

Is there a way I can click a button, link using WebKit? If yes, how? If no,
is there any other alternative?

I am using Windows XP SP2 with Visual Studio 2005.

Thanks,
Prema Arya
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev