Modeling UML Class Diagrams and Sequence diagrams

 

Simplified class diagram and sequence diagram of a web browser.

A web browser is a software that helps to access a resource (web page) available on the World Wide Web and identified by a URL. Whenever a user types in the URL of a web page in the browser's address bar and clicks the "Go" button, the browser sends a HTTP request to the concerned web server. If the requested resource is available and accessible, the web server sends back a HTTP response to the requesting web browser. In case of any error, a HTTP response is sent indicating the error.

When the web browser receives a HTTP response, it displays the web page to the user. In very simple terms a web browser can be thought of consisting the following sub-components: rendering engine, and browser control.

Once a HTTP response has been obtained from the server, the rendering engine decides the layout of the contents and actually displays the requested page. This is done keeping in mind the different HTML elements that are present in the page, and corresponding CSS rules, if any.

The browser control provides facilities like navigating across pages (by following hyperlinks), reload a page, and handles other events related to the window display, for example, resizing the browser window.

Decrease font size Increase font size List of experiments
Top