# File lib/selenium/webdriver/safari/server.rb, line 96
        def process_initial_http_request
          http = @server.accept

          req = ''
          until req.include?("\r\n\r\n")
            req << http.read(1)
          end

          http << HEADERS
          http << "\r\n\r\n"
          http << HTML % [ws_uri, ws_uri]

          http.close
        end