<?xml-stylesheet href="slides.css" type="text/css"?><!DOCTYPE Slide>


<Slide xmlns:html="http://www.w3.org/1999/xhtml" xmlns:xlink="http://www.w3.org/1999/xlink">

  <html:div style="background: black none repeat scroll 0%;" align="center">
  <html:img src="images/mozilla-banner.gif" width="600" height="58" id="logo"/>
  </html:div>

  <SlideBody>
    <Heading>
    Security Policies: Same-Origin
    </Heading>

   <BodyText>
   Scripts on a Web page cannot access content or services from any host except the host
   that the script was loaded from.
   </BodyText>

    <List>
      <ListItem>Hostnames are compared string-wise</ListItem>
      <ListItem>Why: Prevents stealing data from inside a firewall</ListItem>
    </List>
    <BodyText>
    <html:font color="#FF5050">http://warp.mcom.com</html:font>/client/index.html
    <html:br/>
    <html:font color="#FF5050">http://grey.mcom.com</html:font>/docs/index.html
    <html:br/>
    <html:font color="#FF5050">http://grey</html:font>/docs/index.html
    <html:br/>
    <html:font color="#FF5050">ftp://grey</html:font>/tests/testplan.html    
    <html:br/>
    <html:font color="#FF5050">http://homepage.mac.com</html:font>/mstoltz/photos/index.html
    <html:br/>
    <html:font color="#FF5050">http://www.bbc.co.uk</html:font>/films
    </BodyText>
  </SlideBody>

  <Bar>
    <LeftSide>
    <TitleInBar>4/25</TitleInBar>
    </LeftSide>
    <RightSide>
    <html:form>
<html:input type="button" id="magic" value="Prev" onclick="Prev(document);"/>
<html:input type="button" id="magic" value="Next" onclick="Next(document);"/>
    </html:form>
    </RightSide>
  </Bar>
  <html:script src="slides.js"/>

</Slide>
<!-- vim: set sw=2 ts=2: -->