亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? frames.php.svn-base

?? PHP 知識管理系統(基于樹結構的知識管理系統), 英文原版的PHP源碼。
?? SVN-BASE
?? 第 1 頁 / 共 2 頁
字號:
<?php/** *  Base include file for SimpleTest *  @package    SimpleTest *  @subpackage WebTester *  @version    $Id: frames.php 1672 2008-03-02 04:47:34Z edwardzyang $ *//**#@+ *  include other SimpleTest class files */require_once(dirname(__FILE__) . '/page.php');require_once(dirname(__FILE__) . '/user_agent.php');/**#@-*//** *    A composite page. Wraps a frameset page and *    adds subframes. The original page will be *    mostly ignored. Implements the SimplePage *    interface so as to be interchangeable. *    @package SimpleTest *    @subpackage WebTester */class SimpleFrameset {    var $_frameset;    var $_frames;    var $_focus;    var $_names;    /**     *    Stashes the frameset page. Will make use of the     *    browser to fetch the sub frames recursively.     *    @param SimplePage $page        Frameset page.     */    function SimpleFrameset(&$page) {        $this->_frameset = &$page;        $this->_frames = array();        $this->_focus = false;        $this->_names = array();    }    /**     *    Adds a parsed page to the frameset.     *    @param SimplePage $page    Frame page.     *    @param string $name        Name of frame in frameset.     *    @access public     */    function addFrame(&$page, $name = false) {        $this->_frames[] = &$page;        if ($name) {            $this->_names[$name] = count($this->_frames) - 1;        }    }    /**     *    Replaces existing frame with another. If the     *    frame is nested, then the call is passed down     *    one level.     *    @param array $path        Path of frame in frameset.     *    @param SimplePage $page   Frame source.     *    @access public     */    function setFrame($path, &$page) {        $name = array_shift($path);        if (isset($this->_names[$name])) {            $index = $this->_names[$name];        } else {            $index = $name - 1;        }        if (count($path) == 0) {            $this->_frames[$index] = &$page;            return;        }        $this->_frames[$index]->setFrame($path, $page);    }    /**     *    Accessor for current frame focus. Will be     *    false if no frame has focus. Will have the nested     *    frame focus if any.     *    @return array     Labels or indexes of nested frames.     *    @access public     */    function getFrameFocus() {        if ($this->_focus === false) {            return array();        }        return array_merge(                array($this->_getPublicNameFromIndex($this->_focus)),                $this->_frames[$this->_focus]->getFrameFocus());    }    /**     *    Turns an internal array index into the frames list     *    into a public name, or if none, then a one offset     *    index.     *    @param integer $subject    Internal index.     *    @return integer/string     Public name.     *    @access private     */    function _getPublicNameFromIndex($subject) {        foreach ($this->_names as $name => $index) {            if ($subject == $index) {                return $name;            }        }        return $subject + 1;    }    /**     *    Sets the focus by index. The integer index starts from 1.     *    If already focused and the target frame also has frames,     *    then the nested frame will be focused.     *    @param integer $choice    Chosen frame.     *    @return boolean           True if frame exists.     *    @access public     */    function setFrameFocusByIndex($choice) {        if (is_integer($this->_focus)) {            if ($this->_frames[$this->_focus]->hasFrames()) {                return $this->_frames[$this->_focus]->setFrameFocusByIndex($choice);            }        }        if (($choice < 1) || ($choice > count($this->_frames))) {            return false;        }        $this->_focus = $choice - 1;        return true;    }    /**     *    Sets the focus by name. If already focused and the     *    target frame also has frames, then the nested frame     *    will be focused.     *    @param string $name    Chosen frame.     *    @return boolean        True if frame exists.     *    @access public     */    function setFrameFocus($name) {        if (is_integer($this->_focus)) {            if ($this->_frames[$this->_focus]->hasFrames()) {                return $this->_frames[$this->_focus]->setFrameFocus($name);            }        }        if (in_array($name, array_keys($this->_names))) {            $this->_focus = $this->_names[$name];            return true;        }        return false;    }    /**     *    Clears the frame focus.     *    @access public     */    function clearFrameFocus() {        $this->_focus = false;        $this->_clearNestedFramesFocus();    }    /**     *    Clears the frame focus for any nested frames.     *    @access private     */    function _clearNestedFramesFocus() {        for ($i = 0; $i < count($this->_frames); $i++) {            $this->_frames[$i]->clearFrameFocus();        }    }    /**     *    Test for the presence of a frameset.     *    @return boolean        Always true.     *    @access public     */    function hasFrames() {        return true;    }    /**     *    Accessor for frames information.     *    @return array/string      Recursive hash of frame URL strings.     *                              The key is either a numerical     *                              index or the name attribute.     *    @access public     */    function getFrames() {        $report = array();        for ($i = 0; $i < count($this->_frames); $i++) {            $report[$this->_getPublicNameFromIndex($i)] =                    $this->_frames[$i]->getFrames();        }        return $report;    }    /**     *    Accessor for raw text of either all the pages or     *    the frame in focus.     *    @return string        Raw unparsed content.     *    @access public     */    function getRaw() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getRaw();        }        $raw = '';        for ($i = 0; $i < count($this->_frames); $i++) {            $raw .= $this->_frames[$i]->getRaw();        }        return $raw;    }    /**     *    Accessor for plain text of either all the pages or     *    the frame in focus.     *    @return string        Plain text content.     *    @access public     */    function getText() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getText();        }        $raw = '';        for ($i = 0; $i < count($this->_frames); $i++) {            $raw .= ' ' . $this->_frames[$i]->getText();        }        return trim($raw);    }    /**     *    Accessor for last error.     *    @return string        Error from last response.     *    @access public     */    function getTransportError() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getTransportError();        }        return $this->_frameset->getTransportError();    }    /**     *    Request method used to fetch this frame.     *    @return string      GET, POST or HEAD.     *    @access public     */    function getMethod() {        if (is_integer($this->_focus)) {            return $this->_frames[$this->_focus]->getMethod();        }        return $this->_frameset->getMethod();    }    /**     *    Original resource name.     *    @return SimpleUrl        Current url.     *    @access public     */    function getUrl() {        if (is_integer($this->_focus)) {            $url = $this->_frames[$this->_focus]->getUrl();            $url->setTarget($this->_getPublicNameFromIndex($this->_focus));        } else {            $url = $this->_frameset->getUrl();        }        return $url;    }    /**     *    Page base URL.     *    @return SimpleUrl        Current url.     *    @access public     */    function getBaseUrl() {        if (is_integer($this->_focus)) {            $url = $this->_frames[$this->_focus]->getBaseUrl();        } else {            $url = $this->_frameset->getBaseUrl();        }        return $url;    }    /**     *    Expands expandomatic URLs into fully qualified     *    URLs for the frameset page.     *    @param SimpleUrl $url        Relative URL.     *    @return SimpleUrl            Absolute URL.     *    @access public     */    function expandUrl($url) {        return $this->_frameset->expandUrl($url);    }    /**     *    Original request data.     *    @return mixed              Sent content.     *    @access public     */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲男同性视频| 欧美日韩专区在线| 亚洲精品欧美专区| 欧美日韩电影一区| 韩国女主播一区| 青青国产91久久久久久| 亚洲一区二区三区四区不卡| 亚洲女性喷水在线观看一区| 国产蜜臀av在线一区二区三区| 国产精品系列在线| 国产精品色眯眯| 亚洲丝袜另类动漫二区| 亚洲精品日韩一| 亚洲欧洲制服丝袜| 亚洲国产精品久久久久婷婷884| 国产精品少妇自拍| 国产日韩一级二级三级| 久久这里只有精品首页| 久久久久久久久久久久电影| 欧美精品三级日韩久久| 日韩午夜三级在线| 久久久不卡网国产精品一区| 国产精品麻豆视频| 一二三四区精品视频| 日韩在线一区二区三区| av男人天堂一区| 欧美日韩一级二级三级| 欧美精品一区二区在线播放| 精品国精品国产尤物美女| 久久久91精品国产一区二区精品| 国产欧美日韩在线视频| 亚洲综合激情网| 麻豆精品精品国产自在97香蕉| 国精产品一区一区三区mba视频| 懂色av噜噜一区二区三区av| 欧美福利一区二区| 日韩一区中文字幕| 黄页网站大全一区二区| 欧美性受xxxx黑人xyx| 国产欧美精品一区二区色综合朱莉| 国产亚洲一区二区三区| 亚洲精品免费一二三区| 免费在线观看视频一区| 欧美综合在线视频| 国产精品电影院| 国内精品国产成人国产三级粉色| 色婷婷亚洲一区二区三区| 久久精品免视看| 国产在线国偷精品免费看| 欧美日韩国产成人在线91| 亚洲欧美另类久久久精品2019| www.在线成人| 久久久99精品免费观看不卡| 精品一区二区三区在线视频| 日韩一级完整毛片| 精东粉嫩av免费一区二区三区| 欧美va亚洲va| 国产精品自拍一区| 日韩欧美国产精品一区| 五月天视频一区| 久久嫩草精品久久久精品一| 国产福利精品一区| 国产精品国产三级国产aⅴ原创| 91一区二区在线观看| 亚洲国产欧美一区二区三区丁香婷| 91官网在线免费观看| 亚洲一区二区在线观看视频| 日韩视频在线观看一区二区| 韩国成人精品a∨在线观看| 久久精品一区四区| 一本久久综合亚洲鲁鲁五月天| 亚洲综合免费观看高清完整版 | 一区二区三区av电影| 91亚洲精品久久久蜜桃| 一区二区三区波多野结衣在线观看| 7777精品伊人久久久大香线蕉最新版| 久久99国产乱子伦精品免费| 亚洲精品中文字幕在线观看| 日韩视频一区二区在线观看| 99国产欧美另类久久久精品| 日日骚欧美日韩| 国产精品网曝门| 精品av综合导航| 日韩手机在线导航| 欧美日韩美女一区二区| 色老汉av一区二区三区| 成人激情开心网| 粉嫩在线一区二区三区视频| 日日夜夜免费精品| 亚洲bt欧美bt精品777| 一区二区三区四区不卡视频| 国产欧美精品国产国产专区| 欧美怡红院视频| 欧洲av一区二区嗯嗯嗯啊| 97精品视频在线观看自产线路二| 国产 欧美在线| 91福利在线免费观看| 日韩欧美国产三级| 久久精品男人天堂av| 久久精品视频一区二区三区| 国产午夜三级一区二区三| 久久久久99精品一区| 国产日韩av一区| 久久免费看少妇高潮| 国产精品三级电影| 久久久久国产精品厨房| 亚洲免费在线观看视频| 日本视频中文字幕一区二区三区| 国产白丝精品91爽爽久久 | 久久久久国产成人精品亚洲午夜| 精品播放一区二区| 天堂va蜜桃一区二区三区| 久久精品国产第一区二区三区| 成人性色生活片| 欧美不卡在线视频| 亚洲va欧美va天堂v国产综合| 韩国在线一区二区| 欧美色视频一区| 中文字幕一区二区三| 国产一二精品视频| 日韩欧美精品三级| 亚洲一区二区三区自拍| 91在线云播放| 最新不卡av在线| 国产一区在线视频| 日韩小视频在线观看专区| 一区二区三区中文字幕精品精品| 国产不卡在线播放| 国产欧美中文在线| 国产精品夜夜嗨| 精品国产乱码久久久久久闺蜜| 精品一区二区三区免费播放| 欧美va亚洲va香蕉在线| 免费观看91视频大全| 欧美一级精品大片| 国产精品伊人色| 国产精品护士白丝一区av| 国产精品亚洲人在线观看| 中文字幕av在线一区二区三区| 丁香一区二区三区| 亚洲精品综合在线| 91久久精品日日躁夜夜躁欧美| 亚洲一区av在线| 精品久久久久久久人人人人传媒| 精品亚洲porn| 中文字幕一区二区三区精华液 | 日韩精品一二三区| 亚洲精品一区二区三区影院| 国产成人免费在线| 亚洲欧洲www| 精品国内片67194| 欧美性猛交xxxxxxxx| 久久电影国产免费久久电影| 国产日韩欧美麻豆| 日韩三级伦理片妻子的秘密按摩| 国产91在线看| 蜜臀av性久久久久蜜臀aⅴ| 国产精品高潮久久久久无| 欧美大片在线观看一区二区| 色综合天天在线| 大美女一区二区三区| 亚洲午夜免费视频| 国产欧美精品一区| 精品国产3级a| 欧美精品 日韩| 欧美军同video69gay| 国产成人丝袜美腿| 国产精品白丝jk白祙喷水网站 | 欧美在线不卡一区| 国产精品亚洲视频| 成人免费视频caoporn| 国产盗摄精品一区二区三区在线 | 国产婷婷色一区二区三区| 9191久久久久久久久久久| 91视频观看视频| 97久久精品人人做人人爽50路| 成人免费视频视频| 91久久线看在观草草青青| av欧美精品.com| 欧美性猛片xxxx免费看久爱| 欧美色网一区二区| 精品第一国产综合精品aⅴ| 精品乱人伦小说| 久久久久久久久久久久久女国产乱 | 这里只有精品99re| 7777精品伊人久久久大香线蕉经典版下载 | 亚洲欧洲性图库| 亚洲一区二区免费视频| 韩国成人福利片在线播放| 波多野结衣中文字幕一区| 一本到不卡免费一区二区| 欧美疯狂性受xxxxx喷水图片| 久久久噜噜噜久久人人看| 夜夜亚洲天天久久| 国产精品综合一区二区三区| 成人看片黄a免费看在线| 欧美精品一级二级| 亚洲欧洲av在线| 成人性生交大片免费看中文| 欧美日韩一区视频|