×
Community Blog How Do Web Browsers Work?

How Do Web Browsers Work?

Have you ever wondered how a browser is capable of displaying visually attractive and interactive web pages? To answer these questions, let us examine the operating principles of browsers.

Operating_Principles_of_Browsers

Have you ever wondered how a browser is capable of displaying visually attractive and interactive web pages? Have you encountered Error 404 or a DNS resolution error when trying to access a website? To answer these questions, let us examine the operating principles of browsers.

Browser Categories

Modern browsers can be classified into the following six categories, based on their kernels:

Kernel Browser
Trident IE
EDGE Microsoft Edge
Gecko Firefox
WebKit Safari, Chrome
Blink Chrome (newest release)
Presto Opera

Among these kernels, Trident, Gecko, Webkit, and Presto have been in use for many years. With the rapid advancement of browser technologies, many browsers have adopted newer kernels. Microsoft's newest browser, Edge, has replaced the IE browser, sending the Trident kernel to its end. Google has also begun to replace Webkit with newer Blink kernel on newer versions of the Chrome browser. In addition, Opera announced a technical shift to the Blink kernel, indicating that older kernel technologies are phasing out.

Despite these changes, the components of browsers and the principles of loading web pages in browsers are still similar. The figure below shows the major components of a browser:

01

Loading Sequence of a Browser

Once you enter a URL (for example, http://cloudcare.cn ) in the address bar of a browser and press Enter, how does the browser load the corresponding web page?

The answer is through DNS lookup. After you press Enter, the browser has no idea what cloudcare.cn means. Furthermore, it does not know where the website with this domain name resides. In this case, a domain name server (DNS) translates the domain name into an IP address and directs the browser to the corresponding web page.

02

Suppose that the IP address of the local DNS server is 223.5.5.5.

The steps of accessing the website are as follows:

  1. The browser sends a request to the DNS server for the address of cloudcare.cn.
  2. The DNS server returns the IP address of the server that is hosting cloudcare.cn. In this example, the IP address is 10.0.0.1.
  3. The local computer caches the DNS data and sends an access request for cloudcare.cn to the server with the IP address 10.0.0.1.
  4. The server establishes a TCP connection with the local computer to exchange data.

TCP connection and HTTP

Once the TCP connection is set up, data transfer is ready. To transfer data, the connection must meet the requirements of the HTTP protocol (with versions 1.0 and 1.1), including connection, messaging, request and response rules.

Loading a single web page involves several hundreds of HTTP requests. The image below shows a typical structure of an HTTP header:

03

The corresponding header of a responded HTTP request is as follows:

04

Sometimes, the HTTP connection fails, and status codes such as 404 will be displayed instead.

Among the factors of an HTTP response, you may be most concerned with the response body. The following shows a simple response body.

05

This page looks familiar to most of us. Why? Well, this is the prepared HTML page code. With the HTML page code, we can know all the content contained on the website. But how does a browser render the HTML code into an interactive web page?

HTML Code Structure

Let us examine the structure of the HTML code. A complete HTML code consists of html, head, and body tags.

<html>
<head>
</head>
<body>
</body>
</html>

The head tag defines the header of the code, which can reference scripts, specify the style sheet, and provide prime information. However, the items defined here will not be displayed on the web page.

The body tag defines the elements and layout that the web page needs to present. Any written or visual content for the web page is placed within the body section.

Rendering process of an HTML page

The following describes the rendering process of a browser.

The HTML page for the homepage of cloudcare.cn is as follows:

06

Initially, a browser fetches page data from the server, which is called the base document, as shown in the figure above. Then, the browser converts the base document to a structured object named DOM tree and stores it in memory. Finally, the browser renders elements in the DOM tree as visual items according to the tree.

During the rendering, the browser renders the DOM tree from top to bottom and initiates HTTP requests once it detects external resources or scripts (such as the link, script and img tags in the figure above). Meanwhile, the browser will continue to parse the code:

  1. The web page displays the "Hello world" string.
  2. The page loads and displays images.
  3. If you have defined a style that is similar to "div {color: red;}" in the style sheet, the page will display the "Hello world" string in red once it has fully loaded the style sheet.

Normally, this process is instantaneous and not visible to the user. However, when the connection is poor, you might be able to see the webpage develop based on the previously described sequence.

HTTP Cookies

Now, let us discuss cookies. Cookies are small but important pieces of data stored locally on a user's computer. A web browser then records information such as the user's web browsing activity on cookies. This information is useful for improving the user experience on a website but is also vulnerable to cyberattacks.

The HTTP protocol defines a list of operations on cookies. Ideally, the domain name that separates them from their storage is on the local computer in the location where we have the browser installed. Cookies have the following two key features:

  1. They do not support cross-domain access (excluding child-level domains). For example, you cannot access any cookies under baidu.com from cloudcare.cn.
  2. Each HTTP request will automatically carry cookies in the header before being sent to the backend server.

Conclusion

In this article, we looked at some of the basic operating principles of browsers. We discussed how a browser displays results for a search query and the loading sequence involved. We also looked at the HTML code structure and briefly discussed about cookies. To gain a more in-depth knowledge about web browsers, visit http://taligarsiel.com/Projects/howbrowserswork1.htm .

1 1 1
Share on

Alibaba Clouder

2,605 posts | 747 followers

You may also like

Comments

Dikky Ryan Pratama May 9, 2023 at 6:00 am

Waah , thank you for sharing the information