//
//  WebKitTestAppDelegate.m
//  WebKitTest
//
//  Created by Lieven Dekeyser on 19/11/09.
//  Copyright 2009 Lieven Dekeyser. All rights reserved.
//

#import "WebKitTestAppDelegate.h"

@implementation WebKitTestAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
	// Insert code here to initialize your application 
}


- (IBAction)setBackgroundColor:(id)sender
{
	NSLog(@"setBackgroundColor");
	
	[webView stringByEvaluatingJavaScriptFromString:@"document.body.style.backgroundColor='red';"];
}

@end
