I wish to solve Laplace's equation with Dirchlet boundary conditions on an L-shaped domain as described here
http://www.inf.ethz.ch/personal/tulink/FEM14/Ch1_ElmanSyvesterWathen_Ox05.pdf
I know how to do this on a square domain (-1,1) x (-1,1).
eqn = D[u[x, y], {x, 2}] + D[u[x, y], {y, 2}] == -1;
bcs = {u[x, 1] == 0, u[1, y] == 0, u[x, -1] == 0, u[-1, y] == 0 };
sol = First[NDSolve[{eqn, bcs}, u, {x, -1, 1}, {y, -1, 1}]];
Plot3D[Evaluate[u[x, y] /. sol], {x, -1, 1}, {y, -1, 1}]
I wish to modify the second line so that it also specifies that u[x,0]==0 when y<0 and u[x,0]==0 when x<0. Then, I'd like to solve this on the L-shaped region and plot it on the L-shaped region.

Element[{x,y},region]. If you you don't have the new hotness, then maybe the advice I gave here will be of use. – Timothy Wofford Dec 19 '14 at 16:46DirichletCondition? (2)region = ImplicitRegion[<inequalities>]. – Michael E2 Dec 19 '14 at 18:34